mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-17 06:21:36 +03:00
7ecf4aae87
Rustfmt all the things!
46 lines
832 B
Rust
Executable File
46 lines
832 B
Rust
Executable File
#![cfg(target_arch = "wasm32")]
|
|
#![allow(non_snake_case)]
|
|
|
|
extern crate futures;
|
|
extern crate js_sys;
|
|
extern crate wasm_bindgen;
|
|
extern crate wasm_bindgen_futures;
|
|
extern crate wasm_bindgen_test;
|
|
|
|
pub mod Array;
|
|
pub mod ArrayBuffer;
|
|
pub mod ArrayIterator;
|
|
pub mod Boolean;
|
|
pub mod DataView;
|
|
pub mod Date;
|
|
pub mod Error;
|
|
pub mod EvalError;
|
|
pub mod Function;
|
|
pub mod Generator;
|
|
pub mod Intl;
|
|
pub mod Iterator;
|
|
pub mod JSON;
|
|
pub mod JsString;
|
|
pub mod Map;
|
|
pub mod MapIterator;
|
|
pub mod Math;
|
|
pub mod Number;
|
|
pub mod Object;
|
|
pub mod Promise;
|
|
pub mod Proxy;
|
|
pub mod RangeError;
|
|
pub mod ReferenceError;
|
|
pub mod Reflect;
|
|
pub mod RegExp;
|
|
pub mod Set;
|
|
pub mod SetIterator;
|
|
pub mod Symbol;
|
|
pub mod SyntaxError;
|
|
pub mod TypeError;
|
|
pub mod TypedArray;
|
|
pub mod UriError;
|
|
pub mod WeakMap;
|
|
pub mod WeakSet;
|
|
pub mod WebAssembly;
|
|
pub mod global_fns;
|