MCPcopy Index your code
hub / github.com/explodingcamera/tinywasm / visit_f64_const

Method visit_f64_const

crates/parser/src/visit.rs:410–412  ·  view source on GitHub ↗
(&mut self, val: wasmparser::Ieee64)

Source from the content-addressed store, hash-verified

408 }
409
410 fn visit_f64_const(&mut self, val: wasmparser::Ieee64) -> Self::Output {
411 self.instructions.push(Instruction::Const64(val.bits() as i64));
412 }
413
414 fn visit_table_copy(&mut self, dst_table: u32, src_table: u32) -> Self::Output {
415 self.instructions.push(Instruction::TableCopy { dst_table, src_table });

Callers

nothing calls this directly

Calls 2

bitsMethod · 0.80
pushMethod · 0.45

Tested by

no test coverage detected