Commit 465f4527 by John Kessenich

Add 3 missing reserved keywords.

parent c2ff7702
...@@ -470,6 +470,9 @@ int yy_input(char* buf, int max_size); ...@@ -470,6 +470,9 @@ int yy_input(char* buf, int max_size);
"struct" { pyylval->lex.line = yylineno; return STRUCT; } "struct" { pyylval->lex.line = yylineno; return STRUCT; }
"common" { PaReservedWord(); return 0; }
"partition" { PaReservedWord(); return 0; }
"active" { PaReservedWord(); return 0; }
"asm" { PaReservedWord(); return 0; } "asm" { PaReservedWord(); return 0; }
"class" { PaReservedWord(); return 0; } "class" { PaReservedWord(); return 0; }
"union" { PaReservedWord(); return 0; } "union" { PaReservedWord(); return 0; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment