Check whether the value is an f64 constant.
(&self)
| 291 | |
| 292 | /// Check whether the value is an f64 constant. |
| 293 | pub fn is_f64_const(&self) -> bool { |
| 294 | match *self { |
| 295 | Self::F64(_) => true, |
| 296 | _ => false, |
| 297 | } |
| 298 | } |
| 299 | |
| 300 | /// Get the type of the value. |
| 301 | pub fn ty(&self) -> WasmValType { |
no outgoing calls
no test coverage detected