fixing some implicit object parses for issue #541

This commit is contained in:
Jeremy Ashkenas
2010-07-25 17:46:08 -07:00
parent 6b0418a74a
commit 27e5c42023
6 changed files with 193 additions and 180 deletions

View File

@@ -140,6 +140,7 @@ grammar = {
# Assignment of a variable, property, or index to a value.
Assign: [
o "Assignable = Expression", -> new AssignNode $1, $3
o "Assignable = INDENT Expression OUTDENT", -> new AssignNode $1, $4
]
# Assignment when it happens within an object literal. The difference from