1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-06-27 03:31:35 +00:00
Files
.cargo
crates
backend
cli
cli-support
futures
js-sys
src
tests
wasm
Array.rs
ArrayBuffer.rs
ArrayIterator.rs
Boolean.rs
DataView.rs
Date.rs
Error.rs
EvalError.rs
Function.js
Function.rs
Generator.js
Generator.rs
Intl.rs
JSON.rs
JsString.js
JsString.rs
Map.rs
MapIterator.rs
Math.rs
Number.rs
Object.js
Object.rs
Promise.rs
Proxy.js
Proxy.rs
RangeError.rs
ReferenceError.rs
Reflect.js
Reflect.rs
RegExp.rs
Set.rs
SetIterator.rs
Symbol.js
Symbol.rs
SyntaxError.rs
TypeError.rs
TypedArray.rs
UriError.rs
WeakMap.rs
WeakSet.rs
WebAssembly.js
WebAssembly.rs
global_fns.rs
main.rs
headless.js
headless.rs
CHANGELOG.md
Cargo.toml
README.md
macro
macro-support
shared
test
test-macro
typescript
wasm-interpreter
web-sys
webidl
webidl-tests
examples
guide
releases
src
tests
.appveyor.yml
.gitattributes
.gitignore
.travis.yml
CHANGELOG.md
CONTRIBUTING.md
Cargo.toml
LICENSE-APACHE
LICENSE-MIT
README.md
build.rs
package.json
publish.rs
wasm-bindgen/crates/js-sys/tests/wasm/main.rs

45 lines
814 B
Rust
Raw Normal View History

#![cfg(target_arch = "wasm32")]
#![allow(non_snake_case)]
2018-08-15 22:47:49 +02:00
extern crate futures;
extern crate js_sys;
extern crate wasm_bindgen;
2018-08-15 22:47:49 +02:00
extern crate wasm_bindgen_futures;
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 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-08-24 01:25:43 +02:00
pub mod Promise;
2018-07-20 15:35:15 -07:00
pub mod Proxy;
2018-08-10 13:03:44 -07:00
pub mod RangeError;
pub mod ReferenceError;
2018-07-21 20:07:55 -07:00
pub mod Reflect;
pub mod RegExp;
2018-07-20 15:44:15 -07:00
pub mod Set;
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;