Last active
December 27, 2015 02:32
-
-
Save robotlolita/2433107 to your computer and use it in GitHub Desktop.
CoffeeScript parser absurdity
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
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 file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
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 | |
} | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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