(input)
| 2495 | // 分析器 |
| 2496 | class Tokenizer { |
| 2497 | constructor(input) { |
| 2498 | this.input = input |
| 2499 | this.position = 0 |
| 2500 | this.tokens = [] |
| 2501 | } |
| 2502 | |
| 2503 | isWhitespace(char) { |
| 2504 | return /\s/.test(char) |
nothing calls this directly
no outgoing calls
no test coverage detected