We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Coffeescript code like this:
arrayOfObjects = [ 'object1property1': "foo" 'object1property2': "bar" , 'object2property1': "foo" 'object2property2': 'object2property2subproperty1': "ba" 'object2property2subproperty2': "r" ]
triggers strange syntax errors. On the comma I get
mismatched input ',' expecting RULE_RBRACKET
On the "object2property2" and "object2property2subproperty2" lines I get:
no viable alternative at input ':'
Is it the same problem as deeply nested properties described here? Thanks.
The text was updated successfully, but these errors were encountered:
I am also getting a similar problem with a line like this :
collections.campaign[@campaignID].leadsDialable += rows[0].num
The += has the error of "no viable alternative at input '+=' " And the rows[ has the error of " missing RULE_OUTDENT at '[' "
Hope this helps. Id love to be able to edit coffeescript from inside eclipse but as it stands im having to use sublime :(
Sorry, something went wrong.
No branches or pull requests
Coffeescript code like this:
triggers strange syntax errors. On the comma I get
On the "object2property2" and "object2property2subproperty2" lines I get:
Is it the same problem as deeply nested properties described here? Thanks.
The text was updated successfully, but these errors were encountered: