* Requests the discovery phase. Asynchronously finds the nearest parent for * this node and its root. Roots and parents set directly via `setParent()` * API are not discoverable.
()
| 284 | * API are not discoverable. |
| 285 | */ |
| 286 | discover() { |
| 287 | if (this.isDiscoverable()) { |
| 288 | this.scheduleDiscover_(); |
| 289 | } else if (this.name && this.children) { |
| 290 | // Recursively discover the group's children. |
| 291 | this.children.forEach(discoverContextNode); |
| 292 | } |
| 293 | } |
| 294 | |
| 295 | /** |
| 296 | * @return {boolean} |
no test coverage detected