diff options
author | John Hodge (sonata) <tpg@mutabah.net> | 2015-01-22 18:54:56 +0800 |
---|---|---|
committer | John Hodge (sonata) <tpg@mutabah.net> | 2015-01-22 18:54:56 +0800 |
commit | 450d55d26e0265858f60f5a118aac72cf392495f (patch) | |
tree | e7d03a68e827636173cc96c06452e291fd0ed351 /src/parse/lex.cpp | |
parent | feca7097047ef4821c6684f741cb8305567834c8 (diff) | |
download | mrust-450d55d26e0265858f60f5a118aac72cf392495f.tar.gz |
Corrected pattern handling (a bit)
Diffstat (limited to 'src/parse/lex.cpp')
-rw-r--r-- | src/parse/lex.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parse/lex.cpp b/src/parse/lex.cpp index 9655df0a..7dd8eb3c 100644 --- a/src/parse/lex.cpp +++ b/src/parse/lex.cpp @@ -458,6 +458,7 @@ const char* Token::typestr(enum eTokenType type) case TOK_INTEGER: return "TOK_INTEGER";
case TOK_CHAR: return "TOK_CHAR";
case TOK_FLOAT: return "TOK_FLOAT";
+ case TOK_STRING: return "TOK_STRING";
case TOK_CATTR_OPEN: return "TOK_CATTR_OPEN";
case TOK_ATTR_OPEN: return "TOK_ATTR_OPEN";
|