diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-01-27 17:43:42 +0000 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-01-27 17:43:42 +0000 |
| commit | 92453369c5558feaaaa116fbc54968b087e1aeab (patch) | |
| tree | a00501fdc52f69c7dd7c415e103b9b13d51e6ad5 /src/tokenizer.c | |
| parent | 832009f33acc573d44dd9dfb470ad8fef72216ff (diff) | |
Remove while loop and readd c-style for loops i.e. all loops are just `for`
Diffstat (limited to 'src/tokenizer.c')
| -rw-r--r-- | src/tokenizer.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/tokenizer.c b/src/tokenizer.c index c21c09942..8fa836941 100644 --- a/src/tokenizer.c +++ b/src/tokenizer.c @@ -92,7 +92,6 @@ TOKEN_KIND(Token__KeywordBegin, "_KeywordBegin"), \ TOKEN_KIND(Token_then, "then"), \ TOKEN_KIND(Token_if, "if"), \ TOKEN_KIND(Token_else, "else"), \ - TOKEN_KIND(Token_while, "while"), \ TOKEN_KIND(Token_for, "for"), \ TOKEN_KIND(Token_in, "in"), \ TOKEN_KIND(Token_when, "when"), \ |