From 8ceb48a4e60b8ff89f28372da4f66cd152e2e0fe Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Mon, 13 Jul 2026 23:59:36 +0200 Subject: Change record constructor syntax --- boot/lexer.ll | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'boot/lexer.ll') 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); } -- cgit v1.2.3