Current raw token value based on start and current index
()
| 24 | export class ParserImplementation { |
| 25 | /** Current raw token value based on start and current index */ |
| 26 | get raw() { |
| 27 | return this.src.slice(this.start, this.idx); |
| 28 | } |
| 29 | |
| 30 | constructor(src) { |
| 31 | /** Current char index */ |
nothing calls this directly
no outgoing calls
no test coverage detected