(node: NodeContainer, isClosedByChild: boolean)
| 576 | } |
| 577 | |
| 578 | private _pushContainer(node: NodeContainer, isClosedByChild: boolean) { |
| 579 | if (isClosedByChild) { |
| 580 | this._containerStack.pop(); |
| 581 | } |
| 582 | |
| 583 | this._addToParent(node); |
| 584 | this._containerStack.push(node); |
| 585 | } |
| 586 | |
| 587 | private _consumeElementEndTag(endTagToken: TagCloseToken) { |
| 588 | const fullName = this._getElementFullName(endTagToken, this._getClosestElementLikeParent()); |
no test coverage detected