diff options
| author | Eugen Wissner <belka@caraus.de> | 2026-07-13 23:59:36 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2026-07-13 23:59:36 +0200 |
| commit | 8ceb48a4e60b8ff89f28372da4f66cd152e2e0fe (patch) | |
| tree | b5e5522c47de3a7f62cd51a3258bfec7e99c062e /boot/lexer.ll | |
| parent | 500c0676b3f6cd5a2297987d5b0dc7ccf34a28d9 (diff) | |
| download | elna-8ceb48a4e60b8ff89f28372da4f66cd152e2e0fe.tar.gz | |
Change record constructor syntax
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 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); } |
