2018-07-08 09:02:10 +03:00
|
|
|
import { Foo, Bar, concat } from './smorgasboard';
|
2018-03-03 07:19:39 +03:00
|
|
|
|
|
|
|
function assertEq(a, b) {
|
2018-07-08 09:02:10 +03:00
|
|
|
if (a !== b)
|
|
|
|
throw new Error(`${a} != ${b}`);
|
|
|
|
console.log(`found ${a} === ${b}`);
|
2018-03-03 07:19:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
assertEq(concat('a', 'b'), 'ab');
|
|
|
|
|
2018-07-03 17:24:43 +03:00
|
|
|
// Note that to use `new Foo()` the constructor function must be annotated
|
|
|
|
// with `#[wasm_bindgen(constructor)]`, otherwise only `Foo.new()` can be used.
|
|
|
|
// Additionally objects allocated corresponding to Rust structs will need to
|
|
|
|
// be deallocated on the Rust side of things with an explicit call to `free`.
|
|
|
|
let foo = new Foo();
|
2018-03-03 07:19:39 +03:00
|
|
|
assertEq(foo.add(10), 10);
|
|
|
|
foo.free();
|
|
|
|
|
|
|
|
// Pass objects to one another
|
2018-07-03 17:24:43 +03:00
|
|
|
let foo1 = new Foo();
|
2018-07-08 09:02:10 +03:00
|
|
|
let bar = Bar.from_str('22', { opaque: 'object' });
|
2018-03-03 07:19:39 +03:00
|
|
|
foo1.add_other(bar);
|
|
|
|
|
|
|
|
// We also don't have to `free` the `bar` variable as this function is
|
|
|
|
// transferring ownership to `foo1`
|
|
|
|
bar.reset('34');
|
|
|
|
foo1.consume_other(bar);
|
|
|
|
|
|
|
|
assertEq(foo1.add(2), 22 + 34 + 2);
|
|
|
|
foo1.free();
|
|
|
|
|
2018-07-08 09:02:10 +03:00
|
|
|
alert('all passed!');
|