summaryrefslogtreecommitdiffstats
path: root/src/parse.hpp
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2015-04-10 18:01:10 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2015-04-10 18:01:10 +0200
commit634e5db20969023f7545ad0780181b0d3085567d (patch)
treed231dd42c6fd48e6ac52aafbf79cd637b6d1e9ea /src/parse.hpp
parent650fff74dee63fd69a150470bf9b71c0ea8d4b13 (diff)
downloadsolar-634e5db20969023f7545ad0780181b0d3085567d.tar
solar-634e5db20969023f7545ad0780181b0d3085567d.zip
Don't parse keywords in the lexer
Diffstat (limited to 'src/parse.hpp')
-rw-r--r--src/parse.hpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/parse.hpp b/src/parse.hpp
index 86aa095..7b3d73f 100644
--- a/src/parse.hpp
+++ b/src/parse.hpp
@@ -6,14 +6,10 @@
enum parse_token_t {
TOK_BLOCK = 256,
TOK_CHAR = 257,
- TOK_EXTRA_ARG = 258,
- TOK_HEADER = 259,
- TOK_SOURCE = 260,
- TOK_STRING = 261,
- TOK_SYMBOL = 262,
- TOK_SYMBOL_LC = 263,
- TOK_SYMBOL_UC = 264,
- TOK_TYPE = 265,
+ TOK_STRING = 258,
+ TOK_SYMBOL = 259,
+ TOK_SYMBOL_LC = 260,
+ TOK_SYMBOL_UC = 261,
};
typedef struct parse_token_value {