changed moduleimport in parser

This commit is contained in:
Ur Mom 2024-05-07 10:07:00 +02:00
parent 4ee6be3eb8
commit 198c27f676
1 changed files with 1 additions and 1 deletions

View File

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