Check whether the value is an i32 constant.
(&self)
| 267 | |
| 268 | /// Check whether the value is an i32 constant. |
| 269 | pub fn is_i32_const(&self) -> bool { |
| 270 | match *self { |
| 271 | Self::I32(_) => true, |
| 272 | _ => false, |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | /// Check whether the value is an i64 constant. |
| 277 | pub fn is_i64_const(&self) -> bool { |
no outgoing calls
no test coverage detected