(self, properties=None, id=None, parent=None)
| 1859 | ) |
| 1860 | |
| 1861 | def __init__(self, properties=None, id=None, parent=None): |
| 1862 | # super |
| 1863 | XCObject.__init__(self, properties, id, parent) |
| 1864 | |
| 1865 | self._files_by_path = {} |
| 1866 | self._files_by_xcfilelikeelement = {} |
| 1867 | for pbxbuildfile in self._properties.get("files", []): |
| 1868 | self._AddBuildFileToDicts(pbxbuildfile) |
| 1869 | |
| 1870 | def FileGroup(self, path): |
| 1871 | # Subclasses must override this by returning a two-element tuple. The |
nothing calls this directly
no test coverage detected