Nodes are found after initialization. This is how they are added. :param node Node: :param is_root bool:
(self, node, is_root=False)
| 537 | self.subgroups.append(sg) |
| 538 | |
| 539 | def add_node(self, node, is_root=False): |
| 540 | """ |
| 541 | Nodes are found after initialization. This is how they are added. |
| 542 | :param node Node: |
| 543 | :param is_root bool: |
| 544 | """ |
| 545 | self.nodes.append(node) |
| 546 | if is_root: |
| 547 | self.root_node = node |
| 548 | |
| 549 | def all_nodes(self): |
| 550 | """ |
no outgoing calls
no test coverage detected