Method
__init__
(self, src: Value, is_xdec: bool = False, line: int = -1)
Source from the content-addressed store, hash-verified
| 609 | error_kind = ERR_NEVER |
| 610 | |
| 611 | def __init__(self, src: Value, is_xdec: bool = False, line: int = -1) -> None: |
| 612 | assert src.type.is_refcounted |
| 613 | super().__init__(line) |
| 614 | self.src = src |
| 615 | self.is_xdec = is_xdec |
| 616 | |
| 617 | def __repr__(self) -> str: |
| 618 | return "<{}DecRef {!r}>".format("X" if self.is_xdec else "", self.src) |
Callers
nothing calls this directly
Tested by
no test coverage detected