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

@@ -88,8 +88,8 @@ class Python3Parser(PythonParser):
return_if_stmts ::= _stmts return_if_stmt
return_if_stmt ::= ret_expr RETURN_END_IF
stmt ::= break_stmt
break_stmt ::= BREAK_LOOP
stmt ::= break
break ::= BREAK_LOOP
stmt ::= continue
continue ::= CONTINUE