-
-
Save robotlolita/2433107 to your computer and use it in GitHub Desktop.
[ | |
a: 1 | |
, b: 2 | |
, c: 3 | |
] | |
[ a: 1 | |
, b: 2 | |
, c: 3 | |
] | |
[ | |
a: 1 | |
b: 2 | |
c: 3 | |
] | |
[ a: 1, | |
b: 2, | |
c: 3 | |
] | |
[ | |
a: 1, | |
b: 2, | |
c: 3 | |
] | |
[ | |
a: 1 | |
, b: 2, | |
c: 3 | |
] |
[ | |
{ | |
a: 1 | |
}, { | |
b: 2, | |
c: 3 | |
} | |
]; | |
[ | |
{ | |
a: 1, | |
b: 2, | |
c: 3 | |
} | |
]; | |
[ | |
{ | |
a: 1 | |
}, { | |
b: 2, | |
c: 3 | |
} | |
]; | |
[ | |
{ | |
a: 1 | |
}, { | |
b: 2, | |
c: 3 | |
} | |
]; | |
[ | |
{ | |
a: 1 | |
}, { | |
b: 2 | |
}, { | |
c: 3 | |
} | |
]; | |
[ | |
{ | |
a: 1 | |
}, { | |
b: 2 | |
}, { | |
c: 3 | |
} | |
]; |
This does not invalidate the language for me :-)
@Marcker CoffeeScript has no formal specification, no formal grammar. The parser is the language. So the bugs are also the language.
Is this still an issue? This didn't compile when I tried it: http://coffeescript.org/#try:%5B%20%20%0A%20%20%20%20a%3A%201%0A%20%20%2C%20b%3A%202%0A%20%20%2C%20c%3A%203%0A%5D%0A%20%0A%5B%20a%3A%201%0A%2C%20b%3A%202%0A%2C%20c%3A%203%0A%5D%0A%20%0A%5B%0A%20%20%20%20%20a%3A%201%0A%20%20%20%20b%3A%202%0A%20%20%20c%3A%203%0A%5D%0A%20%0A%5B%20a%3A%201%2C%0A%20%20b%3A%202%2C%0A%20%20c%3A%203%20%0A%5D%0A%20%0A%5B%0A%20%20%20%20a%3A%201%2C%0A%20%20%20b%3A%202%2C%0A%20%20%20%20c%3A%203%0A%5D%0A%20%0A%5B%0A%20%20%20%20a%3A%201%0A%20%20%2C%20b%3A%202%2C%0A%20%20%20%20c%3A%203%0A%5D
PERFECT!