()
| 1471 | } |
| 1472 | |
| 1473 | private _isInExpansionForm(): boolean { |
| 1474 | return ( |
| 1475 | this._expansionCaseStack.length > 0 && |
| 1476 | this._expansionCaseStack[this._expansionCaseStack.length - 1] === |
| 1477 | TokenType.EXPANSION_FORM_START |
| 1478 | ); |
| 1479 | } |
| 1480 | |
| 1481 | private isExpansionFormStart(): boolean { |
| 1482 | if (this._cursor.peek() !== chars.$LBRACE) { |
no outgoing calls
no test coverage detected