blob: 9d5a3966d799279ad699def9637e30fde267a754 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
function assert(x) {
if (!x) throw 'error!';
}
var module = new Binaryen.Module();
module.addFunction("main", Binaryen.i32, Binaryen.i32, [], module.local.get(0, Binaryen.i32));
module.addFunctionExport("main", "main");
assert(module.validate()); // should validate before calling emitAsmjs
console.log(module.emitAsmjs());
|