Indy Ray
Indy Ray
So, I'm not sure what the decided action is on this sort of thing, however it seems to me that: ``` $('').css 'color': 'blue' 'text-decoration': 'underline' .appendTo 'body' ``` is...
@delaaxe I'd tend to agree, in fact I feel any instance of implicit parens are error-prone and counter-productive. But this is about the fact that this is a compiler for...
I'm sorry? Not sure I follow.
As best as I can tell, this is an error preprocessor.coffee not actually managing `@context` properly with multi-line `[]`'s and the like, wheras issue #63 seems to be releated to...
Yeah, I think it may.
I don't think this is the the same issue... While it is indeed correct that ``` x = {1: 2, 3: 4} ``` does not compile in coffee, this does:...
@Nami-Doc Perhaps, but I'm not sure it's nearly as unambigious with nested objects and all.
This case seems to be ambigious enough: ``` f = (v) -> v x = a: f b: 2 ```
Interestingly enough, the original compiler compiles: ``` f = (v) -> v x = [a, f b, 2] ``` as ``` var f, x; f = function(v) { return v;...
I agree they they are terribly convoluted, Perhaps you know of a few more coffee-script bugs that are caused by this so we can write test cases, so if we...