()
| 1438 | } |
| 1439 | |
| 1440 | private _isInExpansionForm(): boolean { |
| 1441 | return ( |
| 1442 | this._expansionCaseStack.length > 0 && |
| 1443 | this._expansionCaseStack[this._expansionCaseStack.length - 1] === |
| 1444 | TokenType.EXPANSION_FORM_START |
| 1445 | ); |
| 1446 | } |
| 1447 | |
| 1448 | private isExpansionFormStart(): boolean { |
| 1449 | if (this._cursor.peek() !== chars.$LBRACE) { |
no outgoing calls
no test coverage detected