wasm-bindgen/crates/js-sys/tests/wasm/main.rs

16 lines
314 B
Rust
Raw Normal View History

#![cfg(target_arch = "wasm32")]
#![feature(use_extern_macros, wasm_import_module)]
#![allow(non_snake_case)]
extern crate js_sys;
extern crate wasm_bindgen;
extern crate wasm_bindgen_test;
pub mod Array;
pub mod ArrayBuffer;
pub mod ArrayIterator;
pub mod Boolean;
pub mod DataView;
2018-07-20 22:07:26 +03:00
pub mod Date;
2018-07-20 22:21:41 +03:00
pub mod Error;