Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
517 changes: 281 additions & 236 deletions wasm/core/js/bulk-memory/memory_init.wast.js

Large diffs are not rendered by default.

1,923 changes: 984 additions & 939 deletions wasm/core/js/bulk-memory/table_init.wast.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions wasm/core/js/harness/async_index.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ function reinitializeRegistry() {
element: "anyfunc"
}),
table64: new WebAssembly.Table({
initial: 10,
maximum: 20,
initial: 10n,
maximum: 20n,
element: "anyfunc",
address: "i64"
}),
Expand Down
2 changes: 1 addition & 1 deletion wasm/core/js/harness/sync_index.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ function reinitializeRegistry() {
global_f32: 666.6,
global_f64: 666.6,
table: new WebAssembly.Table({initial: 10, maximum: 20, element: 'anyfunc'}),
table64: new WebAssembly.Table({initial: 10, maximum: 20, element: 'anyfunc', address: "i64"}),
table64: new WebAssembly.Table({initial: 10n, maximum: 20n, element: 'anyfunc', address: "i64"}),
memory: new WebAssembly.Memory({initial: 1, maximum: 2})
};
let handler = {
Expand Down
Loading