making equality left-associative so that our chaining works properly with it.

This commit is contained in:
Jeremy Ashkenas
2010-03-06 23:48:06 -05:00
parent 893fb98522
commit 3e3b71724d
17 changed files with 2121 additions and 3 deletions

View File

@@ -24,7 +24,7 @@ operators: [
["left", '&', '|', '^']
["left", '<=', '<', '>', '>=']
["right", 'DELETE', 'INSTANCEOF', 'TYPEOF']
["right", '==', '!=', 'IS', 'ISNT']
["left", '==', '!=', 'IS', 'ISNT']
["left", '&&', '||', 'AND', 'OR']
["right", '-=', '+=', '/=', '*=', '%=', '||=', '&&=', '?=']
["left", '.']