()
| 1430 | } |
| 1431 | |
| 1432 | private _isInExpansionCase(): boolean { |
| 1433 | return ( |
| 1434 | this._expansionCaseStack.length > 0 && |
| 1435 | this._expansionCaseStack[this._expansionCaseStack.length - 1] === |
| 1436 | TokenType.EXPANSION_CASE_EXP_START |
| 1437 | ); |
| 1438 | } |
| 1439 | |
| 1440 | private _isInExpansionForm(): boolean { |
| 1441 | return ( |
no outgoing calls
no test coverage detected