diff options
| author | gingerBill <bill@gingerbill.org> | 2019-03-31 22:35:05 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2019-03-31 22:35:05 +0100 |
| commit | ecd2eacd7589fd3eea5082f9b28ac548c39fd8ff (patch) | |
| tree | ef6885601e2fff50357a5b2791880401d7b106ef /src/tokenizer.cpp | |
| parent | 2614830c6931e6601f800d3010d269991dcae15e (diff) | |
Remove dead keywords; Fix `min` and `max` for enum types
Diffstat (limited to 'src/tokenizer.cpp')
| -rw-r--r-- | src/tokenizer.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/tokenizer.cpp b/src/tokenizer.cpp index 1537b8139..6fed6d97d 100644 --- a/src/tokenizer.cpp +++ b/src/tokenizer.cpp @@ -122,9 +122,6 @@ TOKEN_KIND(Token__KeywordBegin, ""), \ TOKEN_KIND(Token_type_of, "type_of"), \ TOKEN_KIND(Token_macro, "macro"), \ TOKEN_KIND(Token_const, "const"), \ - TOKEN_KIND(Token_asm, "asm"), \ - TOKEN_KIND(Token_yield, "yield"), \ - TOKEN_KIND(Token_await, "await"), \ TOKEN_KIND(Token__KeywordEnd, ""), \ TOKEN_KIND(Token_Count, "") |