aboutsummaryrefslogtreecommitdiff
path: root/boot/lexer.ll
diff options
context:
space:
mode:
Diffstat (limited to 'boot/lexer.ll')
-rw-r--r--boot/lexer.ll6
1 files changed, 6 insertions, 0 deletions
diff --git a/boot/lexer.ll b/boot/lexer.ll
index 05015f6..4367caa 100644
--- a/boot/lexer.ll
+++ b/boot/lexer.ll
@@ -236,6 +236,12 @@ of {
\] {
return yy::parser::make_RIGHT_SQUARE(this->location);
}
+\{ {
+ return yy::parser::make_LEFT_BRACE(this->location);
+}
+\} {
+ return yy::parser::make_RIGHT_BRACE(this->location);
+}
\<\< {
return yy::parser::make_SHIFT_LEFT(this->location);
}