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
coco> x = 10 ..... y = 5 ..... x-- * y Error: Parse error on line 5: Unexpected ','
Expected output 50 Expected compilation:
50
var x, y; x = 10; y = 5; x-- * y;
(as in CoffeeScript)
Tokens being produced:
ID:x CREMENT:-- , STRNUM:* , ID:y
Before rewriting:
ID:x CREMENT:-- STRNUM:* ID:y
Expected tokens:
ID:a CREMENT:-- MATH:* ID:b
This is due to on line 401 of lexer.co able @tokens evaluating to false.
401
lexer.co
able @tokens
As mentioned by @josher19 in jashkenas/coffeescript#2370
The text was updated successfully, but these errors were encountered:
ab6a645
No branches or pull requests
Expected output
50
Expected compilation:
(as in CoffeeScript)
Tokens being produced:
Before rewriting:
Expected tokens:
This is due to on line
401
oflexer.co
able @tokens
evaluating to false.As mentioned by @josher19 in jashkenas/coffeescript#2370
The text was updated successfully, but these errors were encountered: