diff options
| author | Ginger Bill <bill@gingerbill.org> | 2016-12-16 20:18:23 +0000 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2016-12-16 20:18:23 +0000 |
| commit | d4457e9fa4cfb3a62beaf30e72bffcdea6a0c52b (patch) | |
| tree | f4a700c969ec7b50943b31935d01e43c78102bed /src/tokenizer.c | |
| parent | 9634b28b0723a42463ba6f2879ff533ea2c7cb14 (diff) | |
Minor changes
Diffstat (limited to 'src/tokenizer.c')
| -rw-r--r-- | src/tokenizer.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/tokenizer.c b/src/tokenizer.c index 1839abdc2..1e41b17f7 100644 --- a/src/tokenizer.c +++ b/src/tokenizer.c @@ -4,11 +4,11 @@ TOKEN_KIND(Token_Comment, "Comment"), \ \ TOKEN_KIND(Token__LiteralBegin, "_LiteralBegin"), \ - TOKEN_KIND(Token_Ident, "Identifier"), \ - TOKEN_KIND(Token_Integer, "Integer"), \ - TOKEN_KIND(Token_Float, "Float"), \ - TOKEN_KIND(Token_Rune, "Rune"), \ - TOKEN_KIND(Token_String, "String"), \ + TOKEN_KIND(Token_Ident, "identifier"), \ + TOKEN_KIND(Token_Integer, "integer"), \ + TOKEN_KIND(Token_Float, "float"), \ + TOKEN_KIND(Token_Rune, "rune"), \ + TOKEN_KIND(Token_String, "string"), \ TOKEN_KIND(Token__LiteralEnd, "_LiteralEnd"), \ \ TOKEN_KIND(Token__OperatorBegin, "_OperatorBegin"), \ @@ -87,6 +87,7 @@ TOKEN_KIND(Token__KeywordBegin, "_KeywordBegin"), \ /* TOKEN_KIND(Token_import, "import"), */\ /* TOKEN_KIND(Token_include, "include"), */\ TOKEN_KIND(Token_proc, "proc"), \ + TOKEN_KIND(Token_macro, "macro"), \ TOKEN_KIND(Token_match, "match"), \ TOKEN_KIND(Token_break, "break"), \ TOKEN_KIND(Token_continue, "continue"), \ |