diff options
| author | Eugen Wissner <belka@caraus.de> | 2026-07-19 03:00:59 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2026-07-19 03:00:59 +0200 |
| commit | cd2ee0c97348444779a155909b7ec78d89cfd2e0 (patch) | |
| tree | 06cdf2d033c30741a911b609c40e9ebbc504ac4e /source/lexer.elna | |
| parent | 2e1e95dc716167853be4a4b6acaaee1688142744 (diff) | |
| download | elna-cd2ee0c97348444779a155909b7ec78d89cfd2e0.tar.gz | |
Remove old record syntax
Diffstat (limited to 'source/lexer.elna')
| -rw-r--r-- | source/lexer.elna | 6 |
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 (** |
