mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-18 23:41:45 +03:00
d5b81595ec
First added in #161 this never ended up panning out, so let's remove the experimental suport which isn't actually used by anything today and hold off on any other changes until an RFC happens.
34 lines
521 B
Rust
34 lines
521 B
Rust
use wasm_bindgen_test::*;
|
|
use wasm_bindgen::prelude::*;
|
|
|
|
#[wasm_bindgen(module = "tests/wasm/validate_prt.js")]
|
|
extern {
|
|
fn js_works();
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
pub struct Fruit {
|
|
name: String,
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
impl Fruit {
|
|
#[wasm_bindgen(method)]
|
|
pub fn name(&self) -> String {
|
|
self.name.clone()
|
|
}
|
|
|
|
#[wasm_bindgen(constructor)]
|
|
pub fn new(name: String) -> Self {
|
|
Fruit { name }
|
|
}
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
pub fn eat(_: Fruit) {}
|
|
|
|
#[wasm_bindgen_test]
|
|
fn works() {
|
|
js_works();
|
|
}
|