mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-25 14:12:13 +00:00
* Pre-generating web-sys * Fixing build errors * Minor refactor for the unit tests * Changing to generate #[wasm_bindgen} annotations * Fixing code generation * Adding in main bin to wasm-bindgen-webidl * Fixing more problems * Adding in support for unstable APIs * Fixing bug with code generation * More code generation fixes * Improving the webidl program * Removing unnecessary cfg from the generated code * Splitting doc comments onto separate lines * Improving the generation for unstable features * Adding in support for string values in enums * Now runs rustfmt on the mod.rs file * Fixing codegen for constructors * Fixing webidl-tests * Fixing build errors * Another fix for build errors * Renaming typescript_name to typescript_type * Adding in docs for typescript_type * Adding in CI script to verify that web-sys is up to date * Fixing CI script * Fixing CI script * Don't suppress git diff output * Remove duplicate definitions of `Location` Looks to be a preexisting bug in wasm-bindgen? * Regenerate webidl * Try to get the git diff command right * Handle named constructors in WebIDL * Remove stray rustfmt.toml * Add back NamedConstructorBar definition in tests * Run stable rustfmt over everything * Don't run Cargo in a build script Instead refactor things so webidl-tests can use the Rust-code-generation as a library in a build script. Also fixes `cargo fmt` in the repository. * Fixup generated code * Running web-sys checks on stable * Improving the code generation a little * Running rustfmt Co-authored-by: Alex Crichton <alex@alexcrichton.com>
115 lines
2.1 KiB
Plaintext
Vendored
115 lines
2.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 NullableMethod {
|
|
octet? opt(short? a);
|
|
};
|
|
|
|
[Global=GlobalMethod, Constructor()]
|
|
interface GlobalMethod {
|
|
octet m();
|
|
};
|
|
|
|
[Constructor()]
|
|
interface Indexing {
|
|
getter short (unsigned long index);
|
|
setter void (unsigned long index, short value);
|
|
deleter void (unsigned long index);
|
|
};
|
|
|
|
[Constructor()]
|
|
interface OptionalAndUnionArguments {
|
|
DOMString m(
|
|
DOMString a,
|
|
optional boolean b = true,
|
|
optional (short or DOMString) c = 123,
|
|
optional (long long or boolean)? d = 456
|
|
);
|
|
};
|
|
|
|
[Constructor()]
|
|
interface Variadic {
|
|
short sum(short... values);
|
|
};
|
|
|
|
[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;
|
|
|
|
[Constructor()]
|
|
interface Overloads {
|
|
void foo();
|
|
void foo(DOMString arg, optional long a);
|
|
void foo(DOMString arg, (float or short) b);
|
|
};
|
|
|
|
callback MyCallback = any();
|
|
callback AddCallback = long(long a, long b);
|
|
callback RepeatCallback = DOMString(DOMString a, long cnt);
|
|
callback GetAnswer = long();
|
|
|
|
[Constructor()]
|
|
interface InvokeCallback {
|
|
void invoke(MyCallback callback);
|
|
long callAdd(AddCallback callback);
|
|
DOMString callRepeat(RepeatCallback callback);
|
|
};
|