Publically declare GlobalValue.

It's used in the publically declared FuncEnvironment trait, so library
users should be able to name it.
This commit is contained in:
Dan Gohman
2017-09-07 04:42:01 -07:00
parent 388a96421b
commit c0f3eaafbc

View File

@@ -24,6 +24,6 @@ mod state;
mod translation_utils;
pub use module_translator::{translate_module, TranslationResult};
pub use runtime::{FuncEnvironment, WasmRuntime, DummyRuntime};
pub use runtime::{FuncEnvironment, WasmRuntime, DummyRuntime, GlobalValue};
pub use translation_utils::{FunctionIndex, GlobalIndex, TableIndex, MemoryIndex, SignatureIndex,
Global, GlobalInit, Table, Memory};