| 22 | const fromCharCode = String.fromCharCode; |
| 23 | |
| 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); |
nothing calls this directly
no outgoing calls
no test coverage detected