(lexer, start, end)
| 123 | // Start offset, zero-based inclusive. |
| 124 | // End offset, zero-based exclusive. |
| 125 | function SourceLocation(lexer, start, end) { |
| 126 | this.lexer = void 0; |
| 127 | this.start = void 0; |
| 128 | this.end = void 0; |
| 129 | this.lexer = lexer; |
| 130 | this.start = start; |
| 131 | this.end = end; |
| 132 | } |
| 133 | /** |
| 134 | * Merges two `SourceLocation`s from location providers, given they are |
| 135 | * provided in order of appearance. |
nothing calls this directly
no outgoing calls
no test coverage detected