Skip to content
Snippets Groups Projects
Commit 1b4e583c authored by Marek Vavrusa's avatar Marek Vavrusa
Browse files

Added more symbols to lexer.

parent 33d71839
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,7 @@ BLANK [ \t\n]
\#.*\n /* Ignore comments */;
{BLANK}+ /* Ignore whitespace */;
: /* Optional : in assignments. */;
[-@{};,] { return yytext[0]; }
[!$%^&*()/+-@{};,] { return yytext[0]; }
system { lval.t = yytext; return SYSTEM; }
identity { lval.t = yytext; return IDENTITY; }
version { lval.t = yytext; return VERSION; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment