Victor Sokolov

Results 22 comments of Victor Sokolov

Tried to investigate it a bit. I have the following debug log: ``` 1. about to call the function 2. function_trampoline is about to call NewTrap (function.go:120) 3. NewTrap called,...

Looks like I've found the problem. In `function.rs`, `wasm_func_call`: ```rust Err(e) => Some(Box::new(e.into())) ``` Where `e.into()` (returned value of type `RuntimeError`) calls `RuntimeError.from_trap` which produces the new value of type...