(token)
| 289 | // From internal representation to an external structure |
| 290 | |
| 291 | getTokenRaw(token): string { |
| 292 | return this.scanner.source.slice(token.start, token.end); |
| 293 | } |
| 294 | |
| 295 | convertToken(token: RawToken): TokenEntry { |
| 296 | const t: TokenEntry = { |
no outgoing calls
no test coverage detected