2018-07-20 21:47:49 +03:00
|
|
|
#![cfg(target_arch = "wasm32")]
|
|
|
|
#![allow(non_snake_case)]
|
|
|
|
|
2018-08-15 23:47:49 +03:00
|
|
|
extern crate futures;
|
2018-07-20 21:47:49 +03:00
|
|
|
extern crate js_sys;
|
|
|
|
extern crate wasm_bindgen;
|
2018-08-15 23:47:49 +03:00
|
|
|
extern crate wasm_bindgen_futures;
|
2018-07-20 21:47:49 +03:00
|
|
|
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-08-10 02:21:06 +03:00
|
|
|
pub mod EvalError;
|
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-09-25 22:30:04 +03:00
|
|
|
pub mod Iterator;
|
2018-08-10 03:54:13 +03:00
|
|
|
pub mod JSON;
|
2018-09-26 18:26:00 +03:00
|
|
|
pub mod JsString;
|
2018-07-20 23:46:22 +03:00
|
|
|
pub mod Map;
|
2018-07-20 23:57:18 +03:00
|
|
|
pub mod MapIterator;
|
2018-07-21 00:21:29 +03:00
|
|
|
pub mod Math;
|
2018-07-21 00:35:44 +03:00
|
|
|
pub mod Number;
|
2018-07-21 01:23:56 +03:00
|
|
|
pub mod Object;
|
2018-08-24 02:25:43 +03:00
|
|
|
pub mod Promise;
|
2018-07-21 01:35:15 +03:00
|
|
|
pub mod Proxy;
|
2018-08-10 23:03:44 +03:00
|
|
|
pub mod RangeError;
|
2018-08-10 23:03:56 +03:00
|
|
|
pub mod ReferenceError;
|
2018-07-22 06:07:55 +03:00
|
|
|
pub mod Reflect;
|
2018-07-30 02:13:42 +03:00
|
|
|
pub mod RegExp;
|
2018-07-21 01:44:15 +03:00
|
|
|
pub mod Set;
|
2018-07-21 02:19:10 +03:00
|
|
|
pub mod SetIterator;
|
|
|
|
pub mod Symbol;
|
2018-08-10 23:42:13 +03:00
|
|
|
pub mod SyntaxError;
|
2018-08-10 23:45:39 +03:00
|
|
|
pub mod TypeError;
|
2018-07-21 02:31:29 +03:00
|
|
|
pub mod TypedArray;
|
2018-08-10 23:37:34 +03:00
|
|
|
pub mod UriError;
|
2018-07-21 03:01:26 +03:00
|
|
|
pub mod WeakMap;
|
2018-07-21 03:07:00 +03:00
|
|
|
pub mod WeakSet;
|
2018-07-21 03:09:50 +03:00
|
|
|
pub mod WebAssembly;
|
2018-09-26 18:26:00 +03:00
|
|
|
pub mod global_fns;
|