mirror of
https://github.com/fluencelabs/wasmer
synced 2025-03-23 03:20:50 +00:00
805: Replace panic! & unimplemented! in runtime-code and llvm-backend r=nlewycky a=pventuzelo # Description Replace `unimplemented!` by already used `CodegenError` in `lib/llvm-backend/src/code.rs` Replace `unimplemented!` by `Err` in `lib/llvm-backend/src/trampolines.rs` Replace `panic!` by already used `BinaryReaderError` in `lib/runtime-core/src/parse.rs` # Review - [ ] Create a short description of the the change in the CHANGELOG.md file Co-authored-by: Patrick Ventuzelo <ventuzelo.patrick@gmail.com>
Wasmer Runtime Core
Wasmer is a standalone JIT WebAssembly runtime, aiming to be fully compatible with Emscripten, Rust and Go. Learn more.
This crate represents the core of the runtime.