Merge pull request #507 from c10udlnk/master

Fix when parsing NOP
This commit is contained in:
R. Bernstein
2024-12-01 15:13:25 -05:00
committed by GitHub
3 changed files with 4 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -392,6 +392,10 @@ class PythonParser(GenericASTBuilder):
returns ::= return
returns ::= _stmts return
# NOP
stmt ::= nop_stmt
nop_stmt ::= NOP
"""
pass