Skip to content

Instantly share code, notes, and snippets.

@robotlolita
Last active December 27, 2015 02:32
Show Gist options
  • Save robotlolita/2433107 to your computer and use it in GitHub Desktop.
Save robotlolita/2433107 to your computer and use it in GitHub Desktop.
CoffeeScript parser absurdity
[
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
}
];