Check whether the value is an i64 constant.
(&self)
| 275 | |
| 276 | /// Check whether the value is an i64 constant. |
| 277 | pub fn is_i64_const(&self) -> bool { |
| 278 | match *self { |
| 279 | Self::I64(_) => true, |
| 280 | _ => false, |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | /// Check whether the value is an f32 constant. |
| 285 | pub fn is_f32_const(&self) -> bool { |
no outgoing calls
no test coverage detected