(self, width: int)
| 241 | __slots__ = ("_width",) |
| 242 | |
| 243 | def __init__(self, width: int) -> None: |
| 244 | super().__init__(BitvecASTSort(width)) |
| 245 | self._width = width |
| 246 | |
| 247 | @property |
| 248 | def size(self) -> int: |
nothing calls this directly
no test coverage detected