| 184 | |
| 185 | def iterate(node, retVal=None): |
| 186 | class DictObject(object): |
| 187 | def __init__(self): |
| 188 | self.__dict__ = {} |
| 189 | |
| 190 | def __contains__(self, name): |
| 191 | return name in self.__dict__ |
| 192 | |
| 193 | if retVal is None: |
| 194 | retVal = DictObject() |
no outgoing calls
no test coverage detected
searching dependent graphs…