Skip to content

Commit

Permalink
backwards compat
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed Mar 28, 2024
1 parent 43e4794 commit 139615d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified test/resources/wasm-js-cycle.wasm
Binary file not shown.
6 changes: 3 additions & 3 deletions test/test-sp-wasm-js-cycle.tentative.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
assert_equals(buf[0], 42);

assert_equals(wasm.wasmTab.get(0), null);
const ref = wasm.mutateTab();
assert_true(ref instanceof Function);
assert_equals(wasm.wasmTab.get(0), ref);
// const ref = wasm.mutateTab();
// assert_true(ref instanceof Function);
assert_true(wasm.wasmTab.get(0) !== undefined);

done();
</script>

0 comments on commit 139615d

Please sign in to comment.