Source code

Revision control

Copy as Markdown

Other Tools

newGlobal({newCompartment: true});
g = newGlobal({newCompartment: true});
var dbg = Debugger(g);
gczeal(2, 100);
function f(x, initFunc) {
newGlobal({newCompartment: true});
g.eval(`
var binary = wasmTextToBinary('${x}');
new WebAssembly.Instance(new WebAssembly.Module(binary));
`);
var wasmScript = dbg.findScripts().filter(s => s.format == 'wasm')[0];
var offsets = wasmScript.getPossibleBreakpointOffsets();
initFunc({
wasmScript,
breakpoints: offsets
})
};
try {
f('(module (func nop nop) (export "" (func 0)))',
function({
wasmScript,
breakpoints
}) {
breakpoints.forEach(function(offset) {
wasmScript.setBreakpoint(offset, s = {});
});
}
);
f();
} catch (e) {}