(&self)
| 129 | } |
| 130 | |
| 131 | pub fn try_get_integer(&self) -> Option<Integer> { |
| 132 | match self { |
| 133 | ConstantValue::Int(val) => Some(val.clone()), |
| 134 | _ => None, |
| 135 | } |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | impl From<Integer> for ConstantValue { |
no outgoing calls
no test coverage detected