diff options
Diffstat (limited to 'boot/lexer.ll')
| -rw-r--r-- | boot/lexer.ll | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/boot/lexer.ll b/boot/lexer.ll index 9fe0398..c363ddd 100644 --- a/boot/lexer.ll +++ b/boot/lexer.ll @@ -83,6 +83,12 @@ elsif { while { return yy::parser::make_WHILE(this->location); } +for { + return yy::parser::make_FOR(this->location); +} +by { + return yy::parser::make_BY(this->location); +} do { return yy::parser::make_DO(this->location); } |
