CoffeeScriptRedux
CoffeeScriptRedux copied to clipboard
Multiline conditions has "ambiguous indention"
Consider the following multiline condition:
if foo or
bar
do baz
2.0 beta5 reports it as a bug:
Syntax error on line 105: indention is ambiguous
103 : if foo or
104 : bar
105 : do baz
^^^ :~~~~^
Related thread on the CS google group.
Workaround - dont break conditions into multiple lines.