blob: 347bb8682e7e8587378da1a2c62b0bc498d51ed3 (
plain)
1
2
3
4
5
|
var module = new binaryen.Module();
var expr = module.v128.const([1, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0]);
var info = binaryen.getExpressionInfo(expr);
console.log("v128.const i8x16 0x" + info.value.map(b => b.toString(16)).join(" 0x"));
|