File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
delphi-frontend/src/main/antlr3/au/com/integradev/delphi/antlr Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ### Fixed
11+
12+ - File pointer errors around ` >= ` and ` <= ` tokens.
13+
1014## [ 1.14.0] - 2025-03-03
1115
1216### Added
Original file line number Diff line number Diff line change @@ -335,6 +335,8 @@ import org.apache.commons.lang3.StringUtils;
335335 CommonToken lastToken = (CommonToken) input.LT(- 1 );
336336 lastToken.setType(type);
337337 lastToken.setStartIndex(firstToken.getStartIndex());
338+ lastToken.setLine(firstToken.getLine());
339+ lastToken.setCharPositionInLine(firstToken.getCharPositionInLine());
338340 return lastToken;
339341 }
340342
You can’t perform that action at this time.
0 commit comments