diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-04-11 21:13:21 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-04-11 21:13:21 +0100 |
| commit | f5819eafa97d5daaafdebaf2154a28765ebbfc22 (patch) | |
| tree | 18c129667938d91363f6e3dff1742384f41bea72 /src/tokenizer.c | |
| parent | 5916e71d4fec16f03e372dbb1788d7ae42765f4f (diff) | |
Fix `map` assignment bug due to growth
Diffstat (limited to 'src/tokenizer.c')
| -rw-r--r-- | src/tokenizer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tokenizer.c b/src/tokenizer.c index 44a3b4e82..59ed09deb 100644 --- a/src/tokenizer.c +++ b/src/tokenizer.c @@ -113,6 +113,8 @@ TOKEN_KIND(Token__KeywordBegin, "_KeywordBegin"), \ TOKEN_KIND(Token_push_context, "push_context"), \ TOKEN_KIND(Token_push_allocator, "push_allocator"), \ TOKEN_KIND(Token_asm, "asm"), \ + TOKEN_KIND(Token_yield, "yield"), \ + TOKEN_KIND(Token_await, "await"), \ TOKEN_KIND(Token__KeywordEnd, "_KeywordEnd"), \ TOKEN_KIND(Token_Count, "") |