NT break_stmt, continue_stmt -> break, continue...

to match AST
This commit is contained in:
rocky
2017-12-06 01:48:44 -05:00
parent f8d6998b22
commit 7daf95fcb4
6 changed files with 9 additions and 9 deletions

View File

@@ -62,8 +62,8 @@ class Python2Parser(PythonParser):
return_stmt_lambda ::= ret_expr RETURN_VALUE_LAMBDA
stmt ::= break_stmt
break_stmt ::= BREAK_LOOP
stmt ::= break
break ::= BREAK_LOOP
stmt ::= continue
continue ::= CONTINUE