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

43 lines
771 B
Rust
Raw Normal View History

#![cfg(target_arch = "wasm32")]
#![feature(use_extern_macros)]
#![allow(non_snake_case)]
extern crate js_sys;
extern crate wasm_bindgen;
extern crate wasm_bindgen_test;
pub mod global_fns;
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;
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-07-20 23:35:46 +03:00
pub mod JsString;
2018-08-10 03:54:13 +03:00
pub mod JSON;
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-07-21 01:35:15 +03:00
pub mod Proxy;
2018-08-10 23:03:44 +03:00
pub mod RangeError;
pub mod ReferenceError;
2018-07-22 06:07:55 +03:00
pub mod Reflect;
pub mod RegExp;
2018-07-21 01:44:15 +03:00
pub mod Set;
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;