* Destroy all expanded child trees and clear their references.
()
| 360 | * Destroy all expanded child trees and clear their references. |
| 361 | */ |
| 362 | destroyChildTrees() { |
| 363 | for (const childTree of this.childTrees.values()) { |
| 364 | childTree.destroy(); |
| 365 | } |
| 366 | this.childTrees.clear(); |
| 367 | } |
| 368 | |
| 369 | /** |
| 370 | * Append a new entry to the tree |
no test coverage detected