2018-07-05 14:27:26 -07:00
|
|
|
extern crate wasm_bindgen_test_project_builder as project_builder;
|
2017-12-14 19:31:01 -08:00
|
|
|
|
2018-07-04 22:37:09 -05:00
|
|
|
use project_builder::{project, run};
|
2018-04-09 15:32:06 -07:00
|
|
|
|
|
|
|
mod api;
|
2018-06-10 22:59:09 -07:00
|
|
|
mod char;
|
2018-04-09 15:32:06 -07:00
|
|
|
mod classes;
|
|
|
|
mod closures;
|
2018-06-27 22:42:34 -07:00
|
|
|
mod comments;
|
2018-04-09 15:32:06 -07:00
|
|
|
mod dependencies;
|
|
|
|
mod enums;
|
|
|
|
mod import_class;
|
|
|
|
mod imports;
|
2018-06-27 22:42:34 -07:00
|
|
|
#[cfg(feature = "js_globals")]
|
|
|
|
mod js_globals;
|
2018-04-09 15:32:06 -07:00
|
|
|
mod jsobjects;
|
|
|
|
mod math;
|
|
|
|
mod node;
|
|
|
|
mod non_debug;
|
2018-06-10 22:59:09 -07:00
|
|
|
mod non_wasm;
|
2018-04-09 15:32:06 -07:00
|
|
|
mod simple;
|
|
|
|
mod slice;
|
|
|
|
mod structural;
|
2018-07-04 22:37:09 -05:00
|
|
|
mod typescript;
|
2018-05-05 14:10:25 -07:00
|
|
|
mod u64;
|
2018-06-21 20:35:04 -07:00
|
|
|
mod validate_prt;
|
2018-06-27 22:42:34 -07:00
|
|
|
mod webidl;
|