Source code
Revision control
Copy as Markdown
Other Tools
const tag = new WebAssembly.Tag({ parameters: ["i32", "i32", "i32", "i32"] });
const params = [0, 0, 0, 0];
oomTest(() => {
for (var i = 0; i < 5; ++i) {
new WebAssembly.Exception(tag, params);
}
});