(self)
| 1520 | ) |
| 1521 | |
| 1522 | def _recompute_direct_params_indices(self) -> None: |
| 1523 | for argname, param_type in self._params_directness.items(): |
| 1524 | if param_type == "direct": |
| 1525 | for i, callspec in enumerate(self._calls): |
| 1526 | callspec.indices[argname] = i |
| 1527 | |
| 1528 | |
| 1529 | def _find_parametrized_scope( |