(self, target: str)
| 751 | self._param_def_block[-1].discard(target) |
| 752 | |
| 753 | def push_context_reference(self, target: str) -> None: |
| 754 | self._context_reference_stack.append(target) |
| 755 | |
| 756 | def pop_context_reference(self) -> None: |
| 757 | self._context_reference_stack.pop() |
no test coverage detected