Fix when parsing NOP

Fix error when parsing NOP opcode
This commit is contained in:
c10udlnk
2024-11-29 11:03:13 +08:00
parent e4e3743de5
commit f72b2c1153

View File

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