Returns the original Wasm bytecode for this module, if it is available.
(&self)
| 236 | |
| 237 | /// Returns the original Wasm bytecode for this module, if it is available. |
| 238 | pub fn bytecode(&self) -> Option<&[u8]> { |
| 239 | self.engine_code |
| 240 | .wasm_bytecode_for_module(self.module.module_index) |
| 241 | } |
| 242 | |
| 243 | pub(crate) fn index(&self) -> &Arc<CompiledFunctionsTable> { |
| 244 | &self.index |
no test coverage detected