diff options
Diffstat (limited to 'Homework/cs5300/project-three/out/production/p3-parser/lexer/ExprLexer.tokens')
| -rw-r--r-- | Homework/cs5300/project-three/out/production/p3-parser/lexer/ExprLexer.tokens | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Homework/cs5300/project-three/out/production/p3-parser/lexer/ExprLexer.tokens b/Homework/cs5300/project-three/out/production/p3-parser/lexer/ExprLexer.tokens new file mode 100644 index 0000000..295e180 --- /dev/null +++ b/Homework/cs5300/project-three/out/production/p3-parser/lexer/ExprLexer.tokens @@ -0,0 +1,17 @@ +PLUS=1 +MINUS=2 +MULTIPLY=3 +DIVIDE=4 +OPAREN=5 +CPAREN=6 +FLOAT=7 +INT=8 +IDENTIFIER=9 +COMMENT=10 +WS=11 +'+'=1 +'-'=2 +'*'=3 +'/'=4 +'('=5 +')'=6 |
