Move out GlobalInstance.

This commit is contained in:
Sergey Pepyakin
2017-12-13 18:19:42 +01:00
parent 5eaf2ca183
commit 075ed7d369
5 changed files with 39 additions and 32 deletions

View File

@@ -3,7 +3,8 @@ use std::rc::Rc;
use std::marker::PhantomData;
use std::collections::HashMap;
use elements::{FunctionType, ValueType, GlobalType, MemoryType, TableType};
use interpreter::store::{ExternVal, ModuleInstance, GlobalInstance, FuncInstance};
use interpreter::store::{ExternVal, ModuleInstance, FuncInstance};
use interpreter::global::GlobalInstance;
use interpreter::memory::MemoryInstance;
use interpreter::table::TableInstance;
use interpreter::value::RuntimeValue;