diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-07-04 11:23:48 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-07-04 11:23:48 +0100 |
| commit | 689a0c0b4955e5325c5409855632a3d4a154b41e (patch) | |
| tree | 9b6283b8620f053f33025cf7511daef71d261d03 /src/tokenizer.cpp | |
| parent | bc16b290ba6c2168baf1153b4c7691e679f68b46 (diff) | |
*_of as keyords; Allow constant aliasing for user/built-in procedures, import names, and library names
Diffstat (limited to 'src/tokenizer.cpp')
| -rw-r--r-- | src/tokenizer.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tokenizer.cpp b/src/tokenizer.cpp index 24a2397f2..3adff3e74 100644 --- a/src/tokenizer.cpp +++ b/src/tokenizer.cpp @@ -118,6 +118,10 @@ TOKEN_KIND(Token__KeywordBegin, "_KeywordBegin"), \ TOKEN_KIND(Token_context, "context"), \ TOKEN_KIND(Token_push_context, "push_context"), \ TOKEN_KIND(Token_push_allocator, "push_allocator"), \ + TOKEN_KIND(Token_size_of, "size_of"), \ + TOKEN_KIND(Token_align_of, "align_of"), \ + TOKEN_KIND(Token_offset_of, "offset_of"), \ + TOKEN_KIND(Token_type_of, "type_of"), \ TOKEN_KIND(Token_asm, "asm"), \ TOKEN_KIND(Token_yield, "yield"), \ TOKEN_KIND(Token_await, "await"), \ |