Fixed linting

This commit is contained in:
Syrus Akbary
2021-07-13 19:20:05 -07:00
parent 917667ad8c
commit cb77e6505e
2 changed files with 1 additions and 4 deletions

View File

@@ -2,14 +2,12 @@ use crate::export::Export;
use crate::export::VMGlobal; use crate::export::VMGlobal;
use crate::exports::{ExportError, Exportable}; use crate::exports::{ExportError, Exportable};
use crate::externals::Extern; use crate::externals::Extern;
use crate::store::{Store, StoreObject}; use crate::store::Store;
use crate::types::{Val, ValType}; use crate::types::{Val, ValType};
use crate::wasm_bindgen_polyfill::Global as JSGlobal; use crate::wasm_bindgen_polyfill::Global as JSGlobal;
use crate::GlobalType; use crate::GlobalType;
use crate::Mutability; use crate::Mutability;
use crate::RuntimeError; use crate::RuntimeError;
use std::fmt;
use std::sync::Arc;
use wasm_bindgen::JsValue; use wasm_bindgen::JsValue;
/// A WebAssembly `global` instance. /// A WebAssembly `global` instance.

View File

@@ -1,6 +1,5 @@
use js_sys::Object; use js_sys::Object;
use wasm_bindgen::prelude::*; use wasm_bindgen::prelude::*;
use wasm_bindgen::JsCast;
// WebAssembly.Global // WebAssembly.Global
#[wasm_bindgen] #[wasm_bindgen]