(self)
| 208 | return self.parent.prev_sibling_map[id(self)] |
| 209 | |
| 210 | def leaves(self) -> Iterator["Leaf"]: |
| 211 | for child in self.children: |
| 212 | yield from child.leaves() |
| 213 | |
| 214 | def depth(self) -> int: |
| 215 | if self.parent is None: |
no outgoing calls
no test coverage detected