2018-08-01 14:19:19 -05:00
|
|
|
#![cfg(target_arch = "wasm32")]
|
|
|
|
|
2018-08-21 10:42:52 -07:00
|
|
|
extern crate js_sys;
|
2018-08-01 14:19:19 -05:00
|
|
|
extern crate wasm_bindgen;
|
2018-09-26 08:26:00 -07:00
|
|
|
extern crate wasm_bindgen_test;
|
2018-08-06 10:42:08 -07:00
|
|
|
extern crate wasm_bindgen_test_crate_a;
|
|
|
|
extern crate wasm_bindgen_test_crate_b;
|
2018-08-01 14:19:19 -05:00
|
|
|
|
2018-08-06 09:43:55 -07:00
|
|
|
#[cfg(feature = "serde-serialize")]
|
|
|
|
#[macro_use]
|
|
|
|
extern crate serde_derive;
|
|
|
|
|
2018-11-28 09:25:51 -08:00
|
|
|
use wasm_bindgen::prelude::*;
|
|
|
|
|
2018-08-01 14:19:19 -05:00
|
|
|
pub mod api;
|
2019-03-14 08:46:42 -03:00
|
|
|
pub mod arg_names;
|
2018-08-04 11:25:29 -07:00
|
|
|
pub mod char;
|
2018-08-04 11:52:21 -07:00
|
|
|
pub mod classes;
|
2018-08-05 05:00:16 +03:00
|
|
|
pub mod closures;
|
2018-08-06 11:46:23 -07:00
|
|
|
pub mod comments;
|
2018-08-06 10:42:08 -07:00
|
|
|
pub mod duplicate_deps;
|
2018-08-05 05:00:16 +03:00
|
|
|
pub mod duplicates;
|
|
|
|
pub mod enums;
|
2018-11-09 07:59:48 -08:00
|
|
|
#[path = "final.rs"]
|
|
|
|
pub mod final_;
|
2019-04-30 10:26:03 -03:00
|
|
|
pub mod getters_and_setters;
|
2018-08-05 09:12:23 -07:00
|
|
|
pub mod import_class;
|
2018-08-06 10:42:08 -07:00
|
|
|
pub mod imports;
|
2018-08-05 05:00:16 +03:00
|
|
|
pub mod js_objects;
|
2018-08-04 09:41:59 -07:00
|
|
|
pub mod jscast;
|
2018-08-05 05:00:16 +03:00
|
|
|
pub mod math;
|
2019-07-10 14:22:13 -07:00
|
|
|
pub mod no_shims;
|
2018-08-06 10:06:45 -07:00
|
|
|
pub mod node;
|
2018-08-02 22:23:11 -07:00
|
|
|
pub mod option;
|
2018-08-03 20:47:03 +03:00
|
|
|
pub mod optional_primitives;
|
2018-09-17 18:26:45 -07:00
|
|
|
pub mod rethrow;
|
2018-08-06 09:20:19 -07: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;
|
2018-08-18 22:15:29 +01:00
|
|
|
pub mod variadic;
|
2018-10-01 12:33:33 -07:00
|
|
|
pub mod vendor_prefix;
|
2018-11-28 09:25:51 -08:00
|
|
|
|
|
|
|
// should not be executed
|
|
|
|
#[wasm_bindgen(start)]
|
|
|
|
pub fn start() {
|
|
|
|
panic!();
|
|
|
|
}
|