(self)
| 348 | self.invalidate_sibling_maps() |
| 349 | |
| 350 | def invalidate_sibling_maps(self) -> None: |
| 351 | self.prev_sibling_map: dict[int, NL | None] | None = None |
| 352 | self.next_sibling_map: dict[int, NL | None] | None = None |
| 353 | |
| 354 | def update_sibling_maps(self) -> None: |
| 355 | _prev: dict[int, NL | None] = {} |
no outgoing calls
no test coverage detected