Lines Matching refs:child
73 def add_child(self, child):
74 self.children.append(child)
116 for child in self.children:
117 frees = child.get_free_vars()
120 child.force_global(name)
125 Some child of the current node had a free reference to name.
126 When the child was processed, it was labelled a free
129 walk back down the child chain and set the name to be global
132 Be careful to stop if a child does not think the name is
138 for child in self.children:
139 if child.check_name(name) == SC_FREE:
140 child.force_global(name)
348 """Propagate assignment flag down to child nodes.