From acc4dabb7a0ab71b2d47729a3ee4bac38625af03 Mon Sep 17 00:00:00 2001 From: Valery Antopol Date: Fri, 17 Feb 2023 20:05:04 +0300 Subject: [PATCH] pr fixes --- crates/wasm-backend-traits/src/module.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/wasm-backend-traits/src/module.rs b/crates/wasm-backend-traits/src/module.rs index 8f649f63..7f419e77 100644 --- a/crates/wasm-backend-traits/src/module.rs +++ b/crates/wasm-backend-traits/src/module.rs @@ -22,7 +22,10 @@ pub trait Module { fn custom_sections(&self, key: &str) -> Option<&[Vec]>; /// Instantiates module by allocating memory, VM state and linking imports with ones from `import` argument. + /// Does not call `_start` or `_initialize` functions. + /// /// # Panics: + /// /// If the `Store` given is not the same with `Store` used to create `Imports` and this object. fn instantiate( &self,