Removing -> and => from precendece-having operators.

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

View File

@@ -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", '->', '=>', 'POST_IF', 'POST_UNLESS']
["right", 'POST_IF', 'POST_UNLESS']
]
# Wrapping Up