()
| 913 | } |
| 914 | |
| 915 | private _getContainer(): NodeContainer | null { |
| 916 | return this._containerStack.length > 0 |
| 917 | ? this._containerStack[this._containerStack.length - 1] |
| 918 | : null; |
| 919 | } |
| 920 | |
| 921 | private _getClosestElementLikeParent(): html.Element | html.Component | null { |
| 922 | for (let i = this._containerStack.length - 1; i > -1; i--) { |
no outgoing calls
no test coverage detected