* Finds an immediate child of the specified parent with the specified * label, creates a child node if necessary. If a parent node isn't * specified, uses tree root. * * @param {string} label Child node label.
(label)
| 1063 | * @param {string} label Child node label. |
| 1064 | */ |
| 1065 | findOrAddChild(label) { |
| 1066 | return this.root_.findOrAddChild(label); |
| 1067 | } |
| 1068 | |
| 1069 | /** |
| 1070 | * Creates a subtree by cloning and merging all subtrees rooted at nodes |
no outgoing calls
no test coverage detected