(char: number)
| 1438 | } |
| 1439 | |
| 1440 | private _readUntil(char: number): string { |
| 1441 | const start = this._cursor.clone(); |
| 1442 | this._attemptUntilChar(char); |
| 1443 | return this._cursor.getChars(start); |
| 1444 | } |
| 1445 | |
| 1446 | private _isInExpansion(): boolean { |
| 1447 | return this._isInExpansionCase() || this._isInExpansionForm(); |
no test coverage detected