Removing duplicate 'UNLESS'

This commit is contained in:
Jeremy Ashkenas
2010-10-24 13:54:29 -04:00
parent e822b2d43b
commit ca90af4fa5
2 changed files with 3 additions and 3 deletions

View File

@@ -174,7 +174,7 @@ grammar =
Existence: [
o "Expression ?", -> new Existence $1
]
Do: [
o "DO Code", -> $2.do()
]
@@ -572,7 +572,7 @@ operators = [
["right", 'WHEN', 'LEADING_WHEN', 'FORIN', 'FOROF', 'FROM', 'TO', 'BY', 'THROW']
["right", 'IF', 'UNLESS', 'ELSE', 'FOR', 'WHILE', 'UNTIL', 'LOOP', 'SUPER', 'CLASS', 'EXTENDS']
["right", '=', ':', 'COMPOUND_ASSIGN', 'RETURN']
["right", '->', '=>', 'UNLESS', 'POST_IF', 'POST_UNLESS']
["right", '->', '=>', 'POST_IF', 'POST_UNLESS']
]
# Wrapping Up