(self)
| 85 | return f"VarPointer(name={self.name!r})" |
| 86 | |
| 87 | def dereference(self) -> T: |
| 88 | if not self.name: |
| 89 | raise NullPointerError("pointer is NULL") |
| 90 | |
| 91 | return self._get_scope()[self.name] |
| 92 | |
| 93 | def assign(self, value: Nullable[Union["VarPointer[T]", T]], *, frame: int = 2) -> None: |
| 94 | if value is NULL: |
nothing calls this directly
no test coverage detected