(char: number)
| 1453 | } |
| 1454 | |
| 1455 | private _readUntil(char: number): string { |
| 1456 | const start = this._cursor.clone(); |
| 1457 | this._attemptUntilChar(char); |
| 1458 | return this._cursor.getChars(start); |
| 1459 | } |
| 1460 | |
| 1461 | private _isInExpansion(): boolean { |
| 1462 | return this._isInExpansionCase() || this._isInExpansionForm(); |
no test coverage detected