mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-05-07 19:42:16 +00:00
This commit migrates all our examples to using `wasm-pack build` to compile their code and run `wasm-bindgen`. This should make it a bit easier to understand the examples as there's less to follow during the build step. Webpack projects are all using `@wasm-tool/wasm-pack-plugin` as well so the build step is simple `npm run serve`. Other examples which retain `build.sh` are just using `wasm-pack build` now
36 lines
758 B
Rust
36 lines
758 B
Rust
use wasm_bindgen::prelude::*;
|
|
|
|
#[wasm_bindgen(module = "../defined-in-js")]
|
|
extern "C" {
|
|
fn name() -> String;
|
|
|
|
type MyClass;
|
|
|
|
#[wasm_bindgen(constructor)]
|
|
fn new() -> MyClass;
|
|
|
|
#[wasm_bindgen(method, getter)]
|
|
fn number(this: &MyClass) -> u32;
|
|
#[wasm_bindgen(method, setter)]
|
|
fn set_number(this: &MyClass, number: u32) -> MyClass;
|
|
#[wasm_bindgen(method)]
|
|
fn render(this: &MyClass) -> String;
|
|
}
|
|
|
|
// lifted from the `console_log` example
|
|
#[wasm_bindgen]
|
|
extern "C" {
|
|
#[wasm_bindgen(js_namespace = console)]
|
|
fn log(s: &str);
|
|
}
|
|
|
|
#[wasm_bindgen(start)]
|
|
pub fn run() {
|
|
log(&format!("Hello, {}!", name()));
|
|
|
|
let x = MyClass::new();
|
|
assert_eq!(x.number(), 42);
|
|
x.set_number(10);
|
|
log(&x.render());
|
|
}
|