From cd2ee0c97348444779a155909b7ec78d89cfd2e0 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Sun, 19 Jul 2026 03:00:59 +0200 Subject: Remove old record syntax --- source/lexer.elna | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source/lexer.elna') diff --git a/source/lexer.elna b/source/lexer.elna index c221f07..9e1db21 100644 --- a/source/lexer.elna +++ b/source/lexer.elna @@ -100,6 +100,8 @@ type right_paren, left_square, right_square, + left_brace, + right_brace, greater_equal, less_equal, greater_than, @@ -756,8 +758,8 @@ begin cursor^.start := code_pointer; cursor^.finish := code_pointer; cursor^.token := nil; - cursor^.position.start_location := ElnaLocation(1u, 1u); - cursor^.position.end_location := ElnaLocation(1u, 1u) + cursor^.position.start_location := ElnaLocation{ line: 1u, column: 1u }; + cursor^.position.end_location := ElnaLocation{ line: 1u, column: 1u } return (** -- cgit v1.2.3