wasm-bindgen/crates/webidl-tests/main.rs
Alex Crichton a98b5ea2a0 Add WebIDL support for the ArrayBuffer type
Should help enable a slew of new bindings as well.
2018-08-04 16:34:12 -05:00

13 lines
213 B
Rust

#![feature(use_extern_macros)]
extern crate js_sys;
extern crate wasm_bindgen;
extern crate wasm_bindgen_test;
pub mod array;
pub mod array_buffer;
pub mod consts;
pub mod enums;
pub mod simple;
pub mod throws;