mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-31 17:31:06 +00:00
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
12 lines
233 B
Rust
12 lines
233 B
Rust
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();
|
|
}
|