2018-07-20 21:47:49 +03:00
|
|
|
#![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;
|
|
|
|
|
2018-07-20 21:34:54 +03:00
|
|
|
pub mod Array;
|
2018-07-20 21:47:49 +03:00
|
|
|
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;
|
2018-07-20 22:43:07 +03:00
|
|
|
pub mod Function;
|
2018-07-20 22:56:32 +03:00
|
|
|
pub mod Generator;
|
2018-07-20 23:00:44 +03:00
|
|
|
pub mod Intl;
|
2018-07-20 23:35:46 +03:00
|
|
|
pub mod JsString;
|