* The Source document the AST represents.
(startToken, endToken, source)
| 412 | * The Source document the AST represents. |
| 413 | */ |
| 414 | constructor(startToken, endToken, source) { |
| 415 | this.start = startToken.start; |
| 416 | this.end = endToken.end; |
| 417 | this.startToken = startToken; |
| 418 | this.endToken = endToken; |
| 419 | this.source = source; |
| 420 | } |
| 421 | get [Symbol.toStringTag]() { |
| 422 | return "Location"; |
| 423 | } |
nothing calls this directly
no test coverage detected