2018-07-20 13:47:49 -05:00
|
|
|
#![cfg(target_arch = "wasm32")]
|
|
|
|
#![allow(non_snake_case)]
|
|
|
|
|
2018-08-15 22:47:49 +02:00
|
|
|
extern crate futures;
|
2018-07-20 13:47:49 -05:00
|
|
|
extern crate js_sys;
|
|
|
|
extern crate wasm_bindgen;
|
2018-08-15 22:47:49 +02:00
|
|
|
extern crate wasm_bindgen_futures;
|
2018-07-20 13:47:49 -05:00
|
|
|
extern crate wasm_bindgen_test;
|
|
|
|
|
2018-07-20 17:45:00 -07:00
|
|
|
pub mod global_fns;
|
2018-07-20 11:34:54 -07:00
|
|
|
pub mod Array;
|
2018-07-20 13:47:49 -05:00
|
|
|
pub mod ArrayBuffer;
|
|
|
|
pub mod ArrayIterator;
|
|
|
|
pub mod Boolean;
|
|
|
|
pub mod DataView;
|
2018-07-20 12:07:26 -07:00
|
|
|
pub mod Date;
|
2018-07-20 12:21:41 -07:00
|
|
|
pub mod Error;
|
2018-08-09 19:21:06 -04:00
|
|
|
pub mod EvalError;
|
2018-07-20 12:43:07 -07:00
|
|
|
pub mod Function;
|
2018-07-20 12:56:32 -07:00
|
|
|
pub mod Generator;
|
2018-07-20 13:00:44 -07:00
|
|
|
pub mod Intl;
|
2018-07-20 13:35:46 -07:00
|
|
|
pub mod JsString;
|
2018-08-09 20:54:13 -04:00
|
|
|
pub mod JSON;
|
2018-07-20 13:46:22 -07:00
|
|
|
pub mod Map;
|
2018-07-20 13:57:18 -07:00
|
|
|
pub mod MapIterator;
|
2018-07-20 14:21:29 -07:00
|
|
|
pub mod Math;
|
2018-07-20 14:35:44 -07:00
|
|
|
pub mod Number;
|
2018-07-20 15:23:56 -07:00
|
|
|
pub mod Object;
|
2018-07-20 15:35:15 -07:00
|
|
|
pub mod Proxy;
|
2018-08-10 13:03:44 -07:00
|
|
|
pub mod RangeError;
|
2018-08-10 13:03:56 -07:00
|
|
|
pub mod ReferenceError;
|
2018-07-21 20:07:55 -07:00
|
|
|
pub mod Reflect;
|
2018-07-30 01:13:42 +02:00
|
|
|
pub mod RegExp;
|
2018-07-20 15:44:15 -07:00
|
|
|
pub mod Set;
|
2018-07-20 16:19:10 -07:00
|
|
|
pub mod SetIterator;
|
|
|
|
pub mod Symbol;
|
2018-08-10 13:42:13 -07:00
|
|
|
pub mod SyntaxError;
|
2018-08-10 13:45:39 -07:00
|
|
|
pub mod TypeError;
|
2018-07-20 16:31:29 -07:00
|
|
|
pub mod TypedArray;
|
2018-08-10 13:37:34 -07:00
|
|
|
pub mod UriError;
|
2018-07-20 17:01:26 -07:00
|
|
|
pub mod WeakMap;
|
2018-07-20 17:07:00 -07:00
|
|
|
pub mod WeakSet;
|
2018-07-20 17:09:50 -07:00
|
|
|
pub mod WebAssembly;
|