(&self, vm: &VirtualMachine)
| 513 | /// Get the locals mapping, creating it lazily if needed. |
| 514 | #[inline] |
| 515 | pub fn get_or_create(&self, vm: &VirtualMachine) -> &ArgMapping { |
| 516 | self.inner |
| 517 | .get_or_init(|| ArgMapping::from_dict_exact(vm.ctx.new_dict())) |
| 518 | } |
| 519 | |
| 520 | /// Get the locals mapping if already created. |
| 521 | #[inline] |
no test coverage detected