(&self, f: &mut fmt::Formatter)
| 46 | |
| 47 | impl fmt::Display for StackSlotKind { |
| 48 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
| 49 | use self::StackSlotKind::*; |
| 50 | f.write_str(match *self { |
| 51 | ExplicitSlot => "explicit_slot", |
| 52 | ExplicitDynamicSlot => "explicit_dynamic_slot", |
| 53 | }) |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | /// Contents of a stack slot. |