aboutsummaryrefslogtreecommitdiff
path: root/source/lexer.elna
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-07-19 03:00:59 +0200
committerEugen Wissner <belka@caraus.de>2026-07-19 03:00:59 +0200
commitcd2ee0c97348444779a155909b7ec78d89cfd2e0 (patch)
tree06cdf2d033c30741a911b609c40e9ebbc504ac4e /source/lexer.elna
parent2e1e95dc716167853be4a4b6acaaee1688142744 (diff)
downloadelna-cd2ee0c97348444779a155909b7ec78d89cfd2e0.tar.gz
Remove old record syntax
Diffstat (limited to 'source/lexer.elna')
-rw-r--r--source/lexer.elna6
1 files changed, 4 insertions, 2 deletions
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
(**