Browse Source

The use of brackets is now equal to that of parentheses.

Taddeus Kroes 13 years ago
parent
commit
1fcda08adf
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/parser.py

+ 1 - 0
src/parser.py

@@ -116,6 +116,7 @@ class Parser(BisonParser):
         ('left', ('MINUS', 'PLUS')),
         ('nonassoc', ('INTEGRAL', 'DERIVATIVE')),
         ('left', ('TIMES', )),
+        ('left', ('PRIME', )),
         ('left', ('DIVIDE', )),
         ('nonassoc', ('PRIME', )),
         ('nonassoc', ('NEG', )),