summaryrefslogtreecommitdiffstats
path: root/vendor/wasm-bindgen/tests/wasm/structural.rs
blob: 5066156c6e5c91b773991a923f7b4428508f9ac6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
use wasm_bindgen::prelude::*;
use wasm_bindgen_test::*;

#[wasm_bindgen(module = "tests/wasm/structural.js")]
extern "C" {
    fn js_works();
}

#[wasm_bindgen]
extern "C" {
    pub type StructuralFoo;

    #[wasm_bindgen(method, structural)]
    fn bar(this: &StructuralFoo);
    #[wasm_bindgen(method, getter, structural)]
    fn baz(this: &StructuralFoo) -> u32;
    #[wasm_bindgen(method, setter, structural)]
    fn set_baz(this: &StructuralFoo, val: u32);
}

#[wasm_bindgen]
pub fn run(a: &StructuralFoo) {
    a.bar();
    assert_eq!(a.baz(), 1);
    a.set_baz(2);
    assert_eq!(a.baz(), 2);
}

#[wasm_bindgen_test]
fn works() {
    js_works();
}