()
| 1463 | } |
| 1464 | |
| 1465 | private _isInExpansionCase(): boolean { |
| 1466 | return ( |
| 1467 | this._expansionCaseStack.length > 0 && |
| 1468 | this._expansionCaseStack[this._expansionCaseStack.length - 1] === |
| 1469 | TokenType.EXPANSION_CASE_EXP_START |
| 1470 | ); |
| 1471 | } |
| 1472 | |
| 1473 | private _isInExpansionForm(): boolean { |
| 1474 | return ( |
no outgoing calls
no test coverage detected