(self)
| 1776 | raise NotImplementedError() |
| 1777 | |
| 1778 | def _recurse(self) -> _LoadElement: |
| 1779 | cloned = self._clone() |
| 1780 | cloned.path = PathRegistry.coerce(self.path[:] + self.path[-2:]) |
| 1781 | |
| 1782 | return cloned |
| 1783 | |
| 1784 | def _prepend_path_from(self, parent: Load) -> _LoadElement: |
| 1785 | """adjust the path of this :class:`._LoadElement` to be |
no test coverage detected