Remove some obsolete re-exports in wasmtime-jit. (#992)

These were from when wasmtime-jit was trying to present a different API;
now they're not needed.
This commit is contained in:
Dan Gohman
2020-02-26 05:13:28 -08:00
committed by GitHub
parent e41cae7db9
commit d55a9967b1
3 changed files with 2 additions and 8 deletions

View File

@@ -6,8 +6,7 @@ use crate::values::Val;
use std::ptr;
use std::rc::Rc;
use wasmtime_environ::ir;
use wasmtime_jit::InstanceHandle;
use wasmtime_runtime::Export;
use wasmtime_runtime::{Export, InstanceHandle};
/// A trait representing a function that can be imported and called from inside
/// WebAssembly.

View File

@@ -6,8 +6,7 @@ use std::mem;
use std::panic::{self, AssertUnwindSafe};
use std::ptr;
use std::rc::Rc;
use wasmtime_jit::InstanceHandle;
use wasmtime_runtime::{VMContext, VMFunctionBody};
use wasmtime_runtime::{InstanceHandle, VMContext, VMFunctionBody};
/// A WebAssembly function which can be called.
///