Method
describe_local_shape
(desc: &FrameStateSlot<'_>)
Source from the content-addressed store, hash-verified
| 616 | } |
| 617 | |
| 618 | fn describe_local_shape(desc: &FrameStateSlot<'_>) -> String { |
| 619 | let mut parts = vec![]; |
| 620 | for (offset, ty) in desc.locals() { |
| 621 | parts.push(format!("{ty:?} @ slot+0x{:x}", offset.offset())); |
| 622 | } |
| 623 | parts.join(", ") |
| 624 | } |
| 625 | |
| 626 | fn describe_stack_shape(desc: &FrameStateSlot<'_>, shape: FrameStackShape) -> String { |
| 627 | let mut parts = vec![]; |
Callers
nothing calls this directly
Tested by
no test coverage detected