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 1cccd35..3d881e3 100644 --- a/boot/lexer.ll +++ b/boot/lexer.ll @@ -179,6 +179,12 @@ cast { defer { return yy::parser::make_DEFER(this->location); } +block { + return yy::parser::make_BLOCK(this->location); +} +break { + return yy::parser::make_BREAK(this->location); +} case { return yy::parser::make_CASE(this->location); } |
