aboutsummaryrefslogtreecommitdiff
path: root/boot/lexer.ll
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-07-13 23:59:36 +0200
committerEugen Wissner <belka@caraus.de>2026-07-13 23:59:36 +0200
commit8ceb48a4e60b8ff89f28372da4f66cd152e2e0fe (patch)
treeb5e5522c47de3a7f62cd51a3258bfec7e99c062e /boot/lexer.ll
parent500c0676b3f6cd5a2297987d5b0dc7ccf34a28d9 (diff)
downloadelna-8ceb48a4e60b8ff89f28372da4f66cd152e2e0fe.tar.gz
Change record constructor syntax
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);
}