()
| 1448 | } |
| 1449 | |
| 1450 | private _isInExpansionCase(): boolean { |
| 1451 | return ( |
| 1452 | this._expansionCaseStack.length > 0 && |
| 1453 | this._expansionCaseStack[this._expansionCaseStack.length - 1] === |
| 1454 | TokenType.EXPANSION_CASE_EXP_START |
| 1455 | ); |
| 1456 | } |
| 1457 | |
| 1458 | private _isInExpansionForm(): boolean { |
| 1459 | return ( |
no outgoing calls
no test coverage detected