Marks a parameter in the current parameter definitions as stored. This will skip the enforced undefined checks.
(self, target: str)
| 747 | self._param_def_block.pop() |
| 748 | |
| 749 | def mark_parameter_stored(self, target: str) -> None: |
| 750 | """Marks a parameter in the current parameter definitions as stored. |
| 751 | This will skip the enforced undefined checks. |
| 752 | """ |
| 753 | if self._param_def_block: |
| 754 | self._param_def_block[-1].discard(target) |
| 755 | |
| 756 | def push_context_reference(self, target: str) -> None: |
| 757 | self._context_reference_stack.append(target) |