diff options
| author | Mike Buland <eichlan@xagasoft.com> | 2016-11-30 13:57:04 -0700 |
|---|---|---|
| committer | Mike Buland <eichlan@xagasoft.com> | 2016-11-30 13:57:04 -0700 |
| commit | 0321e6e39b8cf24718cf853c28f0f35443753264 (patch) | |
| tree | 878bdaa2296014244f2dbe90d61c5c869e8204b7 /src/token.h | |
| parent | f50e787110c8b3ecbc1b07262842dd5fdc8a5e42 (diff) | |
| download | clic-0321e6e39b8cf24718cf853c28f0f35443753264.tar.gz clic-0321e6e39b8cf24718cf853c28f0f35443753264.tar.bz2 clic-0321e6e39b8cf24718cf853c28f0f35443753264.tar.xz clic-0321e6e39b8cf24718cf853c28f0f35443753264.zip | |
Working on the parser, some issues.
Diffstat (limited to '')
| -rw-r--r-- | src/token.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/token.h b/src/token.h index 92a7bcc..12a4904 100644 --- a/src/token.h +++ b/src/token.h | |||
| @@ -26,11 +26,15 @@ public: | |||
| 26 | tEquals, | 26 | tEquals, |
| 27 | tString, | 27 | tString, |
| 28 | 28 | ||
| 29 | tNegate, | ||
| 29 | tEndOfLine, | 30 | tEndOfLine, |
| 30 | 31 | ||
| 31 | tEndOfInput | 32 | tEndOfInput, |
| 33 | |||
| 34 | tUninitialized | ||
| 32 | }; | 35 | }; |
| 33 | 36 | ||
| 37 | Token(); | ||
| 34 | Token( Type eType ); | 38 | Token( Type eType ); |
| 35 | Token( Type eType, Bu::String *s ); | 39 | Token( Type eType, Bu::String *s ); |
| 36 | Token( Type eType, Number *n ); | 40 | Token( Type eType, Number *n ); |
