(input)
| 2907 | // 分析器 |
| 2908 | class Tokenizer { |
| 2909 | constructor(input) { |
| 2910 | this.input = input |
| 2911 | this.position = 0 |
| 2912 | this.tokens = [] |
| 2913 | } |
| 2914 | |
| 2915 | isWhitespace(char) { |
| 2916 | return /\s/.test(char) |
nothing calls this directly
no outgoing calls
no test coverage detected