Commit 1fcda08a authored by Taddeüs Kroes's avatar Taddeüs Kroes

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

parent aed5ec18
...@@ -116,6 +116,7 @@ class Parser(BisonParser): ...@@ -116,6 +116,7 @@ class Parser(BisonParser):
('left', ('MINUS', 'PLUS')), ('left', ('MINUS', 'PLUS')),
('nonassoc', ('INTEGRAL', 'DERIVATIVE')), ('nonassoc', ('INTEGRAL', 'DERIVATIVE')),
('left', ('TIMES', )), ('left', ('TIMES', )),
('left', ('PRIME', )),
('left', ('DIVIDE', )), ('left', ('DIVIDE', )),
('nonassoc', ('PRIME', )), ('nonassoc', ('PRIME', )),
('nonassoc', ('NEG', )), ('nonassoc', ('NEG', )),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment