mirror of
https://github.com/fluencelabs/parity-wasm
synced 2025-07-31 22:31:59 +00:00
Fix imports
This commit is contained in:
@@ -1,8 +1,10 @@
|
||||
#![allow(missing_docs)]
|
||||
|
||||
use std::fmt;
|
||||
use elements::{BlockType, External, GlobalEntry, GlobalType, Internal, MemoryType,
|
||||
Module, Opcode, ResizableLimits, TableType, ValueType, InitExpr};
|
||||
use elements::{
|
||||
BlockType, External, GlobalEntry, GlobalType, Internal, MemoryType,
|
||||
Module, Opcode, ResizableLimits, TableType, ValueType, InitExpr
|
||||
};
|
||||
use common::stack;
|
||||
use self::context::ModuleContext;
|
||||
use self::func::Validator;
|
||||
|
@@ -1,7 +1,9 @@
|
||||
use super::validate_module;
|
||||
use builder::module;
|
||||
use elements::{External, GlobalEntry, GlobalType, ImportEntry, InitExpr, MemoryType,
|
||||
Opcode, Opcodes, TableType, ValueType, BlockType};
|
||||
use elements::{
|
||||
External, GlobalEntry, GlobalType, ImportEntry, InitExpr, MemoryType,
|
||||
Opcode, Opcodes, TableType, ValueType, BlockType
|
||||
};
|
||||
|
||||
#[test]
|
||||
fn empty_is_valid() {
|
||||
|
Reference in New Issue
Block a user