2018-08-01 22:19:19 +03:00
|
|
|
#![cfg(target_arch = "wasm32")]
|
|
|
|
#![feature(use_extern_macros)]
|
|
|
|
|
|
|
|
extern crate wasm_bindgen_test;
|
|
|
|
extern crate wasm_bindgen;
|
2018-08-06 20:42:08 +03:00
|
|
|
extern crate wasm_bindgen_test_crate_a;
|
|
|
|
extern crate wasm_bindgen_test_crate_b;
|
2018-08-01 22:19:19 +03:00
|
|
|
|
2018-08-06 19:43:55 +03:00
|
|
|
#[cfg(feature = "serde-serialize")]
|
|
|
|
#[macro_use]
|
|
|
|
extern crate serde_derive;
|
|
|
|
|
2018-08-01 22:19:19 +03:00
|
|
|
pub mod api;
|
2018-08-04 21:25:29 +03:00
|
|
|
pub mod char;
|
2018-08-04 21:52:21 +03:00
|
|
|
pub mod classes;
|
2018-08-05 05:00:16 +03:00
|
|
|
pub mod closures;
|
2018-08-06 21:46:23 +03:00
|
|
|
pub mod comments;
|
2018-08-06 20:42:08 +03:00
|
|
|
pub mod duplicate_deps;
|
2018-08-05 05:00:16 +03:00
|
|
|
pub mod duplicates;
|
|
|
|
pub mod enums;
|
2018-08-05 19:12:23 +03:00
|
|
|
pub mod import_class;
|
2018-08-06 20:42:08 +03:00
|
|
|
pub mod imports;
|
2018-08-05 05:00:16 +03:00
|
|
|
pub mod js_objects;
|
2018-08-04 19:41:59 +03:00
|
|
|
pub mod jscast;
|
2018-08-05 05:00:16 +03:00
|
|
|
pub mod math;
|
2018-08-06 20:06:45 +03:00
|
|
|
pub mod node;
|
2018-08-03 08:23:11 +03:00
|
|
|
pub mod option;
|
2018-08-03 20:47:03 +03:00
|
|
|
pub mod optional_primitives;
|
2018-08-06 19:20:19 +03:00
|
|
|
pub mod simple;
|
2018-08-05 05:00:16 +03:00
|
|
|
pub mod slice;
|
|
|
|
pub mod structural;
|
|
|
|
pub mod u64;
|
|
|
|
pub mod validate_prt;
|