-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
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
unexpected CALL_START #2149
Labels
Comments
Definitely a weird bug. Simplified test case:
Putting explicit curly braces or parens around |
same as #1615 |
Ah, thanks for saving Michael the trouble! |
Similarly, it looks like the following: class Foo
@bar = =>
new @ aoe : 3
Foo.bar() fails to parse (with Unexpected 'CALL_START'). Whereas the same code with parens around the object after class Foo
@bar = =>
new @(aoe : 3)
Foo.bar() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Unsure if this a real error or if I'm misusing object notation. Trying to avoid using
{}
around attributes in a template library.The text was updated successfully, but these errors were encountered: