A slice pointing to all data that is referenced by this instance.
(&self)
| 365 | |
| 366 | /// A slice pointing to all data that is referenced by this instance. |
| 367 | fn wasm_data(&self) -> &[u8] { |
| 368 | match self { |
| 369 | ModuleRuntimeInfo::Module(m) => m.engine_code().wasm_data(), |
| 370 | ModuleRuntimeInfo::Bare(_) => &[], |
| 371 | } |
| 372 | } |
| 373 | |
| 374 | /// Returns an array, indexed by `ModuleInternedTypeIndex` of all |
| 375 | /// `VMSharedSignatureIndex` entries corresponding to the `SignatureIndex`. |
nothing calls this directly
no test coverage detected