Clear the children dataNodes.
()
| 91 | |
| 92 | /** Clear the children dataNodes. */ |
| 93 | protected _clear(): void { |
| 94 | const outlet = this._getNodeOutlet(); |
| 95 | if (outlet) { |
| 96 | outlet.viewContainer.clear(); |
| 97 | this._dataDiffer.diff([]); |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | /** Gets the outlet for the current node. */ |
| 102 | private _getNodeOutlet() { |
no test coverage detected