* Add a string to the buffer than can be reverted.
(char: typeof charcodes.space | typeof charcodes.semicolon)
| 122 | * Add a string to the buffer than can be reverted. |
| 123 | */ |
| 124 | queue(char: typeof charcodes.space | typeof charcodes.semicolon): void { |
| 125 | this._flush(); |
| 126 | this._queuedChar = char; |
| 127 | } |
| 128 | |
| 129 | _flush(): void { |
| 130 | const queuedChar = this._queuedChar; |