(seq: string)
| 125 | } |
| 126 | |
| 127 | const emitSequence = (seq: string): void => { |
| 128 | if (seq) { |
| 129 | tokens.push({ type: 'sequence', value: seq }) |
| 130 | } |
| 131 | result.state = 'ground' |
| 132 | textStart = i |
| 133 | } |
| 134 | |
| 135 | while (i < data.length) { |
| 136 | const code = data.charCodeAt(i) |