mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-20 12:10:52 +00:00
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!
64 lines
1.1 KiB
Plaintext
Vendored
64 lines
1.1 KiB
Plaintext
Vendored
[Constructor(double value)]
|
|
interface Method {
|
|
[Pure]
|
|
boolean myCmp(Method bar);
|
|
};
|
|
|
|
[Constructor(double value)]
|
|
interface Property {
|
|
[Pure]
|
|
attribute double value;
|
|
};
|
|
|
|
[NamedConstructor=NamedConstructorBar(double value)]
|
|
interface NamedConstructor {
|
|
[Pure]
|
|
readonly attribute double value;
|
|
};
|
|
|
|
interface StaticMethod {
|
|
static double swap(double value);
|
|
};
|
|
|
|
interface StaticProperty {
|
|
static attribute double value;
|
|
};
|
|
|
|
[Constructor()]
|
|
interface UndefinedMethod {
|
|
boolean ok_method();
|
|
boolean bad_method(UndefinedType undef);
|
|
};
|
|
|
|
[Constructor()]
|
|
interface Unforgeable {
|
|
[Unforgeable] readonly attribute short uno;
|
|
readonly attribute short dos;
|
|
};
|
|
|
|
[Constructor]
|
|
interface PartialInterface {
|
|
readonly attribute short un;
|
|
short deux();
|
|
};
|
|
|
|
partial interface PartialInterface {
|
|
readonly attribute short trois;
|
|
short quatre();
|
|
};
|
|
|
|
[Constructor(short bar)]
|
|
interface MixinFoo {
|
|
static attribute short defaultBar;
|
|
};
|
|
|
|
interface mixin MixinBar {
|
|
readonly attribute short bar;
|
|
};
|
|
|
|
partial interface mixin MixinBar {
|
|
void addToBar(short other);
|
|
};
|
|
|
|
MixinFoo includes MixinBar;
|