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
On second thought, this may require additional large changes or just be too late at this point.
For example, to keep the current behavior of -> a if b (meaning -> (a if b)) -> would need to bind softer than post-if, but f -> a if b would still mean f(-> a) if b due to the way implicit call is generated.
Instead add grammar
Parameters -> Expression
.Pros
We can remove the adhoc hack for jashkenas/coffeescript#1611.
f -> a.b, c
will naturally work.Cons
f -> a; b
will backward-incompatibly be parsed asrather than current
The text was updated successfully, but these errors were encountered: