summaryrefslogtreecommitdiff
path: root/src/token.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2016-11-30 13:57:04 -0700
committerMike Buland <eichlan@xagasoft.com>2016-11-30 13:57:04 -0700
commit0321e6e39b8cf24718cf853c28f0f35443753264 (patch)
tree878bdaa2296014244f2dbe90d61c5c869e8204b7 /src/token.h
parentf50e787110c8b3ecbc1b07262842dd5fdc8a5e42 (diff)
downloadclic-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.h6
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 );