Merge pull request #17048 from prymitive/parserErr

ENHANCEMENT: Refactor TestParseExpressions to be more explicit about errors
This commit is contained in:
Björn Rabenstein 2025-08-14 16:04:16 +02:00 committed by GitHub
commit 1c002c5669
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1735 additions and 1490 deletions

File diff suppressed because it is too large Load Diff

View File

@ -23,8 +23,8 @@ type Pos int
// PositionRange describes a position in the input string of the parser.
type PositionRange struct {
Start Pos
End Pos
Start Pos // Start of the range, zero-indexed.
End Pos // End of the range, zero-indexed.
}
// StartPosInput uses the query string to convert the PositionRange into a