mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-13 00:51:20 +00:00
Fix runtime test missing method
This commit is contained in:
@ -549,7 +549,8 @@ mod vm_ctx_tests {
|
||||
};
|
||||
use crate::cache::Error as CacheError;
|
||||
use crate::error::RuntimeResult;
|
||||
use crate::types::{FuncIndex, LocalFuncIndex, Value};
|
||||
use crate::typed_func::Wasm;
|
||||
use crate::types::{FuncIndex, LocalFuncIndex, SigIndex, Value};
|
||||
use hashbrown::HashMap;
|
||||
use std::ptr::NonNull;
|
||||
struct Placeholder;
|
||||
@ -574,6 +575,13 @@ mod vm_ctx_tests {
|
||||
) -> RuntimeResult<Vec<Value>> {
|
||||
Ok(vec![])
|
||||
}
|
||||
fn get_wasm_trampoline(
|
||||
&self,
|
||||
_module: &ModuleInner,
|
||||
_sig_index: SigIndex,
|
||||
) -> Option<Wasm> {
|
||||
unimplemented!()
|
||||
}
|
||||
fn get_early_trapper(&self) -> Box<dyn UserTrapper> {
|
||||
unimplemented!()
|
||||
}
|
||||
|
Reference in New Issue
Block a user