Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue 162 #163

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions baron/grammator_operators.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,15 +191,15 @@ def comparison_advanced_node(pack):
@pg.production("expr : xor_expr VBAR expr")
@pg.production("xor_expr : and_expr CIRCUMFLEX xor_expr")
@pg.production("and_expr : shift_expr AMPER and_expr")
@pg.production("shift_expr : arith_expr RIGHT_SHIFT shift_expr")
@pg.production("shift_expr : arith_expr LEFT_SHIFT shift_expr")
@pg.production("arith_expr : term PLUS arith_expr")
@pg.production("arith_expr : term MINUS arith_expr")
@pg.production("term : factor STAR term")
@pg.production("term : factor SLASH term")
@pg.production("term : factor PERCENT term")
@pg.production("term : factor DOUBLE_SLASH term")
@pg.production("term : factor AT term")
@pg.production("shift_expr : shift_expr RIGHT_SHIFT arith_expr")
@pg.production("shift_expr : shift_expr LEFT_SHIFT arith_expr")
@pg.production("arith_expr : arith_expr PLUS term")
@pg.production("arith_expr : arith_expr MINUS term")
@pg.production("term : term STAR factor")
@pg.production("term : term SLASH factor")
@pg.production("term : term PERCENT factor")
@pg.production("term : term DOUBLE_SLASH factor")
@pg.production("term : term AT factor")
@pg.production("power : atom DOUBLE_STAR factor")
@pg.production("power : atom DOUBLE_STAR power")
def binary_operator_node(pack):
Expand Down
Loading