wasm-bindgen/tests/wasm/validate_prt.rs
Alex Crichton cc36bdc00d
Fix codegen of consuming setters/getters (#2172)
Make sure they reset their internal pointer to null after we call Rust
since it invalidates the Rust pointer after being called!

Closes #2168
2020-05-29 15:28:52 -05:00

45 lines
692 B
Rust

use wasm_bindgen::prelude::*;
use wasm_bindgen_test::*;
#[wasm_bindgen(module = "tests/wasm/validate_prt.js")]
extern "C" {
fn js_works();
}
#[wasm_bindgen]
pub struct Fruit {
name: String,
}
#[wasm_bindgen]
impl Fruit {
pub fn name(&self) -> String {
self.name.clone()
}
#[wasm_bindgen(constructor)]
pub fn new(name: String) -> Self {
Fruit { name }
}
pub fn rot(self) {
drop(self);
}
#[wasm_bindgen(getter)]
pub fn prop(self) -> u32 {
0
}
#[wasm_bindgen(setter)]
pub fn set_prop(self, _val: u32) {}
}
#[wasm_bindgen]
pub fn eat(_: Fruit) {}
#[wasm_bindgen_test]
fn works() {
js_works();
}