wasm_remapper 0.1.0

A library for remapping wasm binaries against known references with debug symbols
Documentation
1
2
3
4
5
6
7
8
9
10
11
use parity_wasm::elements::{ValueType, Instruction};

#[derive(Debug)]
pub struct Function {
    pub id: u32,
    pub name: Option<String>,
    pub return_type: Option<ValueType>,
    pub param_types: Vec<ValueType>,
    pub local_types: Vec<ValueType>,
    pub instructions: Vec<Instruction>,
}