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.cpp | |
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 'src/token.cpp')
-rw-r--r-- | src/token.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/token.cpp b/src/token.cpp index a03c821..30f3566 100644 --- a/src/token.cpp +++ b/src/token.cpp | |||
@@ -4,6 +4,12 @@ | |||
4 | #include <bu/formatter.h> | 4 | #include <bu/formatter.h> |
5 | #include <bu/string.h> | 5 | #include <bu/string.h> |
6 | 6 | ||
7 | Token::Token() : | ||
8 | eType( tUninitialized ), | ||
9 | sVal( 0 ) | ||
10 | { | ||
11 | } | ||
12 | |||
7 | Token::Token( Type eType ) : | 13 | Token::Token( Type eType ) : |
8 | eType( eType ), | 14 | eType( eType ), |
9 | sVal( 0 ) | 15 | sVal( 0 ) |