(self, ast_sort: ASTSort)
| 124 | __slots__ = ("_ast_sort",) |
| 125 | |
| 126 | def __init__(self, ast_sort: ASTSort) -> None: |
| 127 | self._ast_sort = ast_sort |
| 128 | |
| 129 | def __repr__(self) -> str: |
| 130 | return _sort_repr(self._ast_sort) |
nothing calls this directly
no outgoing calls
no test coverage detected