(char: number)
| 1420 | } |
| 1421 | |
| 1422 | private _readUntil(char: number): string { |
| 1423 | const start = this._cursor.clone(); |
| 1424 | this._attemptUntilChar(char); |
| 1425 | return this._cursor.getChars(start); |
| 1426 | } |
| 1427 | |
| 1428 | private _isInExpansion(): boolean { |
| 1429 | return this._isInExpansionCase() || this._isInExpansionForm(); |
no test coverage detected