JUMP_BACK and CONTINUE need to be treated more similar...

fixes 148
This commit is contained in:
rocky
2018-01-22 23:08:20 -05:00
parent bd49fcb001
commit 71e7120501
5 changed files with 23 additions and 6 deletions

View File

@@ -131,6 +131,7 @@ class Python27Parser(Python2Parser):
ifelsestmt ::= testexpr c_stmts_opt JUMP_FORWARD else_suite COME_FROM
ifelsestmtc ::= testexpr c_stmts_opt JUMP_ABSOLUTE else_suitec
ifelsestmtl ::= testexpr c_stmts_opt JUMP_BACK else_suitel
ifelsestmtl ::= testexpr c_stmts_opt CONTINUE else_suitel
# Common with 2.6
return_if_lambda ::= RETURN_END_IF_LAMBDA COME_FROM