783: corrected chained comparison precedence

This commit is contained in:
satyr
2010-10-23 23:51:22 +09:00
parent 6058910b49
commit 1335aee54b
7 changed files with 120 additions and 119 deletions

View File

@@ -555,9 +555,8 @@ operators = [
["left", 'MATH']
["left", '+', '-']
["left", 'SHIFT']
["left", 'COMPARE']
["left", 'RELATION']
["left", '==', '!=']
["left", '==', '!=', 'COMPARE']
["left", 'LOGIC']
["left", '.']
["nonassoc", 'INDENT', 'OUTDENT']