Method
__init__
(
self,
ast: ASTNode,
sort: ArraySortRef,
vars: frozenset[tuple[str, ASTSort]] = frozenset(),
)
Source from the content-addressed store, hash-verified
| 779 | __slots__ = () |
| 780 | |
| 781 | def __init__( |
| 782 | self, |
| 783 | ast: ASTNode, |
| 784 | sort: ArraySortRef, |
| 785 | vars: frozenset[tuple[str, ASTSort]] = frozenset(), |
| 786 | ) -> None: |
| 787 | super().__init__(ast, sort, vars) |
| 788 | |
| 789 | def __getitem__(self, idx: ExprRef) -> ExprRef: |
| 790 | return Select(self, idx) |
Callers
nothing calls this directly
Tested by
no test coverage detected