Merge pull request #59 from Servostar/add-parser-rule-for-modules-import

Added module-import parser rules
This commit is contained in:
SirTalksalot75 2024-05-08 13:18:47 +02:00 committed by GitHub
commit 9676319a51
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -80,6 +80,10 @@ paramlist: '(' exprlist ')' paramlist
funcall: Ident paramlist { DEBUG("Function call"); };
assign: Ident '=' expr { DEBUG("Assignment"); };
moduleimport: KeyImport ValStr { DEBUG("Module-Import"); };
statementlist: statement statementlist
| statement;