pass
-class GenericPath:
- def __init__(self, path):
- self.__path = path
- return super().__init__()
-
- def __str__(self):
- return self.__path.__str__()
-
- def __repr__(self):
- return f"{self.__class__.__name__}({str(self)})"
-
- @property
- def path(self):
- return self.__path
-
-
-class IndexPath(GenericPath):
- def __str__(self):
- return f"[{self.path!r}]"
-
-
-class AttributePath(GenericPath):
- def __str__(self):
- return f".{self.path}"
-
-
-class HashPath(GenericPath):
- def __str__(self):
- return f"{{{self.path}}}"
-
-
class Walker(dispatcher.Dispatcher, metaclass=WalkerMeta):
@dispatcher.Hook(tuple, list)
def dispatch_ordered_sequence(self, node):