diff options
| author | gingerBill <ginger.bill.22@gmail.com> | 2016-07-25 11:14:25 +0100 |
|---|---|---|
| committer | gingerBill <ginger.bill.22@gmail.com> | 2016-07-25 11:14:25 +0100 |
| commit | 32ab8fcf99df786c264ca566799b022c66cca34b (patch) | |
| tree | 79b3f9642c1e49c3995b417fd8b599a20974f564 /src/tokenizer.cpp | |
| parent | 9d8355d3612e65a5764640fb972bc4ef9f013088 (diff) | |
`alias` and unified parameters lists for procedures and structures.
Diffstat (limited to 'src/tokenizer.cpp')
| -rw-r--r-- | src/tokenizer.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tokenizer.cpp b/src/tokenizer.cpp index 4263f7f52..48d1fd748 100644 --- a/src/tokenizer.cpp +++ b/src/tokenizer.cpp @@ -102,6 +102,7 @@ Token__OperatorEnd, Token__KeywordBegin, Token_type, + Token_alias, Token_proc, Token_match, // TODO(bill): switch vs match? Token_break, @@ -189,6 +190,7 @@ char const *TOKEN_STRINGS[] = { "_OperatorEnd", "_KeywordBegin", "type", + "alias", "proc", "match", "break", @@ -697,6 +699,7 @@ Token tokenizer_get_token(Tokenizer *t) { KWB KWT("type", Token_type); + KWT("alias", Token_alias); KWT("proc", Token_proc); KWT("match", Token_match); KWT("break", Token_break); |