(initial_locals: Vec<FrameValue>, max_locals: usize)
| 46 | matches!(self, FrameValue::Long | FrameValue::Double) |
| 47 | } |
| 48 | |
| 49 | fn is_reference_like(&self) -> bool { |
| 50 | matches!( |
| 51 | self, |
| 52 | FrameValue::Null |
| 53 | | FrameValue::Object(_) |
| 54 | | FrameValue::UninitializedThis |
| 55 | | FrameValue::Uninitialized(_) |
| 56 | ) |
| 57 | } |
| 58 | } |
nothing calls this directly
no outgoing calls
no test coverage detected