fixing indentation for prefix while nodes

This commit is contained in:
Jeremy Ashkenas
2010-03-10 20:15:12 -05:00
parent b9f1390405
commit 55cac23976
4 changed files with 4 additions and 4 deletions

View File

@@ -371,7 +371,7 @@ grammar: {
# or postfix, with a single expression. There is no do..while.
While: [
o "WhileSource Block", -> $1.add_body $2
o "Expression WhileSource", -> $2.add_body $1
o "Expression WhileSource", -> $2.add_body Expressions.wrap [$1]
]
# Array, object, and range comprehensions, at the most generic level.