(lexer, start, end)
| 8 | // Start offset, zero-based inclusive. |
| 9 | // End offset, zero-based exclusive. |
| 10 | constructor(lexer, start, end) { |
| 11 | this.lexer = void 0; |
| 12 | this.start = void 0; |
| 13 | this.end = void 0; |
| 14 | this.lexer = lexer; |
| 15 | this.start = start; |
| 16 | this.end = end; |
| 17 | } |
| 18 | /** |
| 19 | * Merges two `SourceLocation`s from location providers, given they are |
| 20 | * provided in order of appearance. |
nothing calls this directly
no outgoing calls
no test coverage detected