Commit 0e6c5e55 authored by Taddeüs Kroes's avatar Taddeüs Kroes

Added logical operators to line generator precedences

parent 49a93dc0
......@@ -4,8 +4,8 @@ from node import Node
all_parens = ('()', '[]', '||', '{}')
OPERATORS = (
('left', ('vv', )),
('left', ('^^', )),
('left', ('vv', '|')),
('left', ('^^', '&')),
('left', ('=', )),
('left', ('+', '-')),
('nonassoc', ('int', 'd/d')),
......
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