Method
__init__
(
self,
ast: ASTNode,
sort: SeqSortRef,
vars: frozenset[tuple[str, ASTSort]] = frozenset(),
)
Source from the content-addressed store, hash-verified
| 3876 | __slots__ = () |
| 3877 | |
| 3878 | def __init__( |
| 3879 | self, |
| 3880 | ast: ASTNode, |
| 3881 | sort: SeqSortRef, |
| 3882 | vars: frozenset[tuple[str, ASTSort]] = frozenset(), |
| 3883 | ) -> None: |
| 3884 | super().__init__(ast, sort, vars) |
| 3885 | |
| 3886 | def __add__(self, other: SeqRef) -> SeqRef: |
| 3887 | if not isinstance(other, SeqRef): |
Callers
nothing calls this directly
Tested by
no test coverage detected