mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-19 08:02:09 +03:00
11553a1af2
This commit implements the `JsCast` trait automatically for all imported types in `#[wasm_bindgen] extern { ... }` blocks. The main change here was to generate an `instanceof` shim for all imported types in case it's needed. All imported types now also implement `AsRef<JsValue>` and `AsMut<JsValue>`
34 lines
654 B
Rust
34 lines
654 B
Rust
#![cfg(target_arch = "wasm32")]
|
|
#![feature(use_extern_macros)]
|
|
|
|
extern crate wasm_bindgen_test;
|
|
extern crate wasm_bindgen;
|
|
extern crate wasm_bindgen_test_crate_a;
|
|
extern crate wasm_bindgen_test_crate_b;
|
|
|
|
#[cfg(feature = "serde-serialize")]
|
|
#[macro_use]
|
|
extern crate serde_derive;
|
|
|
|
pub mod api;
|
|
pub mod char;
|
|
pub mod classes;
|
|
pub mod closures;
|
|
pub mod comments;
|
|
pub mod duplicate_deps;
|
|
pub mod duplicates;
|
|
pub mod enums;
|
|
pub mod import_class;
|
|
pub mod imports;
|
|
pub mod js_objects;
|
|
pub mod jscast;
|
|
pub mod math;
|
|
pub mod node;
|
|
pub mod option;
|
|
pub mod optional_primitives;
|
|
pub mod simple;
|
|
pub mod slice;
|
|
pub mod structural;
|
|
pub mod u64;
|
|
pub mod validate_prt;
|