MCPcopy Create free account
hub / github.com/scottrogowski/code2flow / all_nodes

Method all_nodes

code2flow/model.py:549–557  ·  view source on GitHub ↗

List of nodes that are part of this group + all subgroups :rtype: list[Node]

(self)

Source from the content-addressed store, hash-verified

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 """

Callers 6

map_itFunction · 0.80
_limit_namespacesFunction · 0.80
_limit_functionsFunction · 0.80
_resolve_str_variableFunction · 0.80
matches_variableMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected