Rick Waldron (2013-07-12T14:02:18.000Z)
forbes at lindesay.co.uk (2013-07-12T15:49:55.208Z)
Andrew: > Semi-formally that syntax looks like: > > ``` > function-call: > <name-token> '(' <parameter-list> ')' // existing form > <name-token> <object-literal> // proposal > ``` Existing grammar: ``` CallExpression Arguments Arguments : ( ) ( ArgumentList ) ``` To add `ObjectLiteral`, at very least the grammar would need to have a `NoLineTerminator` between `CallExpression` and `Arguments`, which breaks extant code.