mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-28 14:27:36 +03:00
7e16690f10
This commit moves the `webidl/tests` folder to a new `crates/webidl-tests` crate (to have a test-only build script) and ports them to the `#[wasm_bindgen_test]` attribute, which should hopefully make testing much speedier for execution!
23 lines
398 B
Plaintext
Vendored
23 lines
398 B
Plaintext
Vendored
[Constructor(long value)]
|
|
interface Thang {
|
|
[Throws]
|
|
attribute long ok_attr;
|
|
[Throws]
|
|
attribute long err_attr;
|
|
|
|
[Throws]
|
|
long ok_method();
|
|
[Throws]
|
|
long err_method();
|
|
|
|
[Throws]
|
|
static long ok_static_method();
|
|
[Throws]
|
|
static long err_static_method();
|
|
|
|
[Throws]
|
|
static attribute long ok_static_attr;
|
|
[Throws]
|
|
static attribute long err_static_attr;
|
|
};
|