You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you accidentally add a colon at the end of a line, like in Python, the CoffeeScript compiler (HEAD) produces rather unhelpful error messages. I ended up spending some time yesterday hunting down an extra colon in the middle of my source. ;-)
$ bin/coffee -sc
while 1:
1
Error: Parse error on line 2: Unexpected 'TERMINATOR'
$ bin/coffee -sc
for i in [1]:
1
Error: Parse error on line 1: Unexpected '{'
This is not really a bug, more like a nuisance -- just thought you might appreciate the report. Feel free to close it if there is nothing that can be done.