(self, x)
| 147 | self.scope_name_appeared = [] |
| 148 | |
| 149 | def append(self, x): |
| 150 | if isinstance(x, NodePyIO): |
| 151 | self.nodes_io[x.debugName] = x |
| 152 | if isinstance(x, NodePyOP): |
| 153 | self.nodes_op.append(x) |
| 154 | |
| 155 | def printall(self): |
| 156 | print("all nodes") |