From 44d6e8a27294e5ca7300ab11900011b73d9336d4 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Tue, 21 Jul 2026 01:55:56 +0200 Subject: Implement slices --- boot/lexer.ll | 3 +++ 1 file changed, 3 insertions(+) (limited to 'boot/lexer.ll') diff --git a/boot/lexer.ll b/boot/lexer.ll index e84af85..9fe0398 100644 --- a/boot/lexer.ll +++ b/boot/lexer.ll @@ -152,6 +152,9 @@ case { of { return yy::parser::make_OF(this->location); } +to { + return yy::parser::make_TO(this->location); +} {ID1}{ID2}* { return yy::parser::make_IDENTIFIER(yytext, this->location); } -- cgit v1.2.3