Cargo fmt more files.

This commit is contained in:
losfair
2019-03-18 00:35:55 +08:00
parent 99faa79869
commit 6c40ea1cb5
5 changed files with 19 additions and 7 deletions

View File

@ -1,10 +1,11 @@
use crate::types::{
FuncSig, GlobalDescriptor, MemoryDescriptor, MemoryIndex, TableDescriptor, TableIndex, Type, Value,
FuncSig, GlobalDescriptor, MemoryDescriptor, MemoryIndex, TableDescriptor, TableIndex, Type,
Value,
};
use std::sync::Arc;
use wasmparser::BinaryReaderError;
use core::borrow::Borrow;
use std::any::Any;
use std::sync::Arc;
use wasmparser::BinaryReaderError;
pub type Result<T> = std::result::Result<T, Error>;
pub type CompileResult<T> = std::result::Result<T, CompileError>;