diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-06-12 12:56:47 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-06-12 12:56:47 +0100 |
| commit | 0c05fc14327631b0fa70eadf60426d507812c4d5 (patch) | |
| tree | 8bb33e68c87221581da6ca6ec83b80b36de4bddc /src/tokenizer.cpp | |
| parent | 33eeb5852190ea6a363eced57050ba739061a32b (diff) | |
Prefix `type` and `let` to replace `immutable`
Diffstat (limited to 'src/tokenizer.cpp')
| -rw-r--r-- | src/tokenizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tokenizer.cpp b/src/tokenizer.cpp index 425cd6a1d..d1ea26da7 100644 --- a/src/tokenizer.cpp +++ b/src/tokenizer.cpp @@ -83,6 +83,7 @@ TOKEN_KIND(Token__OperatorEnd, "_OperatorEnd"), \ \ TOKEN_KIND(Token__KeywordBegin, "_KeywordBegin"), \ TOKEN_KIND(Token_var, "var"), \ + TOKEN_KIND(Token_let, "let"), \ TOKEN_KIND(Token_const, "const"), \ TOKEN_KIND(Token_type, "type"), \ TOKEN_KIND(Token_when, "when"), \ @@ -109,7 +110,6 @@ TOKEN_KIND(Token__KeywordBegin, "_KeywordBegin"), \ TOKEN_KIND(Token_dynamic, "dynamic"), \ TOKEN_KIND(Token_map, "map"), \ TOKEN_KIND(Token_using, "using"), \ - TOKEN_KIND(Token_immutable, "immutable"), \ TOKEN_KIND(Token_context, "context"), \ TOKEN_KIND(Token_push_context, "push_context"), \ TOKEN_KIND(Token_push_allocator, "push_allocator"), \ |