List of nodes that are part of this group + all subgroups :rtype: list[Node]
(self)
| 547 | self.root_node = node |
| 548 | |
| 549 | def all_nodes(self): |
| 550 | """ |
| 551 | List of nodes that are part of this group + all subgroups |
| 552 | :rtype: list[Node] |
| 553 | """ |
| 554 | ret = list(self.nodes) |
| 555 | for subgroup in self.subgroups: |
| 556 | ret += subgroup.all_nodes() |
| 557 | return ret |
| 558 | |
| 559 | def get_constructor(self): |
| 560 | """ |
no outgoing calls
no test coverage detected