diff options
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 (** |
