* Finds an immediate child with the specified label. * * @param {string} label Child node label.
(label)
| 1210 | * @param {string} label Child node label. |
| 1211 | */ |
| 1212 | findChild(label) { |
| 1213 | const found = this.children[label]; |
| 1214 | return found === undefined ? null : found; |
| 1215 | } |
| 1216 | |
| 1217 | /** |
| 1218 | * Finds an immediate child with the specified label, creates a child |
no outgoing calls
no test coverage detected