()
| 1456 | } |
| 1457 | |
| 1458 | private _isInExpansionForm(): boolean { |
| 1459 | return ( |
| 1460 | this._expansionCaseStack.length > 0 && |
| 1461 | this._expansionCaseStack[this._expansionCaseStack.length - 1] === |
| 1462 | TokenType.EXPANSION_FORM_START |
| 1463 | ); |
| 1464 | } |
| 1465 | |
| 1466 | private isExpansionFormStart(): boolean { |
| 1467 | if (this._cursor.peek() !== chars.$LBRACE) { |
no outgoing calls
no test coverage detected