(self)
| 138 | self.children = list(children) |
| 139 | |
| 140 | def __repr__(self): |
| 141 | return '%s(%s)' % (self.__class__.__name__, |
| 142 | ', '.join(repr(a) for a in self.children)) |
| 143 | |
| 144 | def flat(self, *types): |
| 145 | if type(self) in types: |
nothing calls this directly
no outgoing calls
no test coverage detected