Home
last modified time | relevance | path

Searched refs:debug_bytecode (Results 1 – 3 of 3) sorted by relevance

/wasmtime-44.0.1/tests/all/
H A Ddebug.rs1163 assert_eq!(module.debug_bytecode(), Some(&wasm[..])); in module_bytecode()
1178 assert_eq!(module.debug_bytecode(), None); in module_bytecode_absent_without_debug()
1220 assert_eq!(modules[0].debug_bytecode().unwrap(), &m1_wasm[..]); in component_bytecode()
1221 assert_eq!(modules[1].debug_bytecode().unwrap(), &m2_wasm[..]); in component_bytecode()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dmodule.rs699 pub fn debug_bytecode(&self) -> Option<&[u8]> { in debug_bytecode() method
/wasmtime-44.0.1/crates/debugger/src/host/
H A Dapi.rs432 Ok(module.debug_bytecode().map(|b| b.to_vec())) in bytecode()