diff options
author | Mike Buland <mike@xagasoft.com> | 2013-04-23 11:47:01 -0600 |
---|---|---|
committer | Mike Buland <mike@xagasoft.com> | 2013-04-23 11:47:01 -0600 |
commit | 04f56c12e82ea5228b2b65e68c46ed7f4563182b (patch) | |
tree | 89a8db02dae8aaafd70f91bb15f21209cd1fa0ed /src/token.h | |
parent | 9f138260dafeb5a1b541fff8dd577422439feb0b (diff) | |
download | clic-04f56c12e82ea5228b2b65e68c46ed7f4563182b.tar.gz clic-04f56c12e82ea5228b2b65e68c46ed7f4563182b.tar.bz2 clic-04f56c12e82ea5228b2b65e68c46ed7f4563182b.tar.xz clic-04f56c12e82ea5228b2b65e68c46ed7f4563182b.zip |
Variables work.
Diffstat (limited to '')
-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 | ||