| 1 | interface LocationRange { |
| 2 | /** |
| 3 | * A string or object that was supplied to the `parse()` call as the |
| 4 | * `grammarSource` option. |
| 5 | */ |
| 6 | readonly source: GrammarSource; |
| 7 | /** Position at the beginning of the expression. */ |
| 8 | readonly start: Location; |
| 9 | /** Position after the end of the expression. */ |
| 10 | readonly end: Location; |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected