| 664 | const lines = text.split('\n') |
| 665 | |
| 666 | interface TokenInfo { |
| 667 | line: number |
| 668 | char: number |
| 669 | length: number |
| 670 | tokenType: number |
| 671 | tokenModifiers: number |
| 672 | } |
| 673 | |
| 674 | const tokens: TokenInfo[] = [] |
| 675 |
nothing calls this directly
no outgoing calls
no test coverage detected