(self)
| 507 | return descendants |
| 508 | |
| 509 | def PBXProjectAncestor(self): |
| 510 | # The base case for recursion is defined at PBXProject.PBXProjectAncestor. |
| 511 | if self.parent: |
| 512 | return self.parent.PBXProjectAncestor() |
| 513 | return None |
| 514 | |
| 515 | def _EncodeComment(self, comment): |
| 516 | """Encodes a comment to be placed in the project file output, mimicking |
no outgoing calls
no test coverage detected