(start: number, end: number)
| 36 | } |
| 37 | |
| 38 | toStringRange(start: number, end: number) { |
| 39 | return this.tokens |
| 40 | .slice(start, end) |
| 41 | .map((t) => t.value) |
| 42 | .join(""); |
| 43 | } |
| 44 | |
| 45 | read(): string { |
| 46 | if (this.end()) return ""; |
no outgoing calls
no test coverage detected