diff options
Diffstat (limited to 'src/token.h')
-rw-r--r-- | src/token.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/token.h b/src/token.h index 3b5caff..05a610a 100644 --- a/src/token.h +++ b/src/token.h | |||
@@ -14,7 +14,7 @@ public: | |||
14 | enum Type | 14 | enum Type |
15 | { | 15 | { |
16 | tNumber, | 16 | tNumber, |
17 | tString, | 17 | tVariable, |
18 | tCommand, | 18 | tCommand, |
19 | tPlus, | 19 | tPlus, |
20 | tMinus, | 20 | tMinus, |
@@ -22,6 +22,7 @@ public: | |||
22 | tMultiply, | 22 | tMultiply, |
23 | tOpenParen, | 23 | tOpenParen, |
24 | tCloseParen, | 24 | tCloseParen, |
25 | tEquals, | ||
25 | 26 | ||
26 | tEndOfLine, | 27 | tEndOfLine, |
27 | 28 | ||