mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-20 00:27:26 +03:00
121 lines
2.9 KiB
Rust
121 lines
2.9 KiB
Rust
use super::project;
|
|
|
|
#[test]
|
|
fn method() {
|
|
project()
|
|
.file(
|
|
"foo.webidl",
|
|
r#"
|
|
[Constructor(double value)]
|
|
interface Foo {
|
|
[Pure]
|
|
boolean myCmp(Foo bar);
|
|
};
|
|
"#,
|
|
)
|
|
.file(
|
|
"foo.ts",
|
|
r#"
|
|
export class Foo {
|
|
constructor(private value: number) {
|
|
this.value = value;
|
|
}
|
|
myCmp(other: Foo): boolean {
|
|
return this.value === other.value;
|
|
}
|
|
}
|
|
"#,
|
|
)
|
|
.file(
|
|
"src/lib.rs",
|
|
r#"
|
|
#![feature(proc_macro, wasm_custom_section, wasm_import_module)]
|
|
|
|
extern crate wasm_bindgen;
|
|
|
|
use wasm_bindgen::prelude::*;
|
|
|
|
pub mod foo;
|
|
|
|
use foo::Foo;
|
|
|
|
#[wasm_bindgen]
|
|
pub fn test() {
|
|
let pi = Foo::new(3.14159);
|
|
let e = Foo::new(2.71828);
|
|
let tmp = pi.my_cmp(Foo::new(3.14159));
|
|
assert!(tmp);
|
|
let tmp =!pi.my_cmp(Foo::new(2.71828));
|
|
assert!(tmp);
|
|
let tmp = !e.my_cmp(Foo::new(3.14159));
|
|
assert!(tmp);
|
|
let tmp = e.my_cmp(Foo::new(2.71828));
|
|
assert!(tmp);
|
|
}
|
|
"#,
|
|
)
|
|
.test();
|
|
}
|
|
|
|
#[test]
|
|
fn property() {
|
|
project()
|
|
.file(
|
|
"foo.webidl",
|
|
r#"
|
|
[Constructor(double value)]
|
|
interface Foo {
|
|
[Pure]
|
|
attribute double value;
|
|
};
|
|
"#,
|
|
)
|
|
.file(
|
|
"foo.ts",
|
|
r#"
|
|
export class Foo {
|
|
constructor(private _value: number) {
|
|
this._value = _value;
|
|
}
|
|
|
|
get value(): number {
|
|
return this._value;
|
|
}
|
|
|
|
set value(_value: number) {
|
|
this._value = _value;
|
|
}
|
|
}
|
|
"#,
|
|
)
|
|
.file(
|
|
"src/lib.rs",
|
|
r#"
|
|
#![feature(proc_macro, wasm_custom_section, wasm_import_module)]
|
|
|
|
extern crate wasm_bindgen;
|
|
|
|
use wasm_bindgen::prelude::*;
|
|
|
|
pub mod foo;
|
|
|
|
use foo::Foo;
|
|
|
|
#[wasm_bindgen]
|
|
pub fn test() {
|
|
let x = Foo::new(3.14159);
|
|
let tmp = x.value() == 3.14159;
|
|
assert!(tmp);
|
|
let tmp = x.value() != 2.71828;
|
|
assert!(tmp);
|
|
x.set_value(2.71828);
|
|
let tmp = x.value() != 3.14159;
|
|
assert!(tmp);
|
|
let tmp = x.value() == 2.71828;
|
|
assert!(tmp);
|
|
}
|
|
"#,
|
|
)
|
|
.test();
|
|
}
|