mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-06-12 12:31:22 +00:00
Support [NoInterfaceObject] in web-sys
This commit enables `[NoInterfaceObject]` annotated interfaces in `web-sys`. The `NoInterfaceObject` attribute means that there's not actually a JS class for the object, but all of its properties and such can still be accessed structually and invoked. This should help provide more bindings for some more common types on the web! Note that this builds on recent features to ensure that `dyn_into` and friends always fail for `NoInterfaceObject` objects because they don't actually have a class. Closes #893 Closes #1257 Closes #1315
This commit is contained in:
11
crates/webidl-tests/no_interface.rs
Normal file
11
crates/webidl-tests/no_interface.rs
Normal file
@ -0,0 +1,11 @@
|
||||
use js_sys::Object;
|
||||
use wasm_bindgen_test::*;
|
||||
|
||||
include!(concat!(env!("OUT_DIR"), "/no_interface.rs"));
|
||||
|
||||
#[wasm_bindgen_test]
|
||||
fn smoke() {
|
||||
let obj = GetNoInterfaceObject::get();
|
||||
assert_eq!(obj.number(), 3.0);
|
||||
obj.foo();
|
||||
}
|
Reference in New Issue
Block a user