(self, name)
| 90 | return self.children[index] if 0 <= index < len(self.children) else None |
| 91 | |
| 92 | def getChildByName(self, name): |
| 93 | for c in self.children: |
| 94 | if c.name == name: |
| 95 | return c |
| 96 | return None |
| 97 | |
| 98 | def getNextValueElement(self, root): |
| 99 | current = self |
no outgoing calls
no test coverage detected