(self, properties=None, id=None, parent=None)
| 1173 | ) |
| 1174 | |
| 1175 | def __init__(self, properties=None, id=None, parent=None): |
| 1176 | # super |
| 1177 | XCHierarchicalElement.__init__(self, properties, id, parent) |
| 1178 | self._children_by_path = {} |
| 1179 | self._variant_children_by_name_and_path = {} |
| 1180 | for child in self._properties.get("children", []): |
| 1181 | self._AddChildToDicts(child) |
| 1182 | |
| 1183 | def Hashables(self): |
| 1184 | # super |
nothing calls this directly
no test coverage detected