(&self, tracer_fn: &mut TraverseFn<'_>)
| 483 | |
| 484 | unsafe impl Traverse for LocalsPlus { |
| 485 | fn traverse(&self, tracer_fn: &mut TraverseFn<'_>) { |
| 486 | self.fastlocals().traverse(tracer_fn); |
| 487 | self.stack_as_slice().traverse(tracer_fn); |
| 488 | } |
| 489 | } |
| 490 | |
| 491 | /// Lazy locals dict for frames. For NEWLOCALS frames, the dict is |
nothing calls this directly
no test coverage detected