有没有办法验证asm.js代码

时间:2013-12-08 12:12:13

标签: javascript validation asm.js

我希望在Firefox Nightly中发现编译消息,但它不会发生。这有特殊的开关吗?

2 个答案:

答案 0 :(得分:3)

Haven未对其进行测试,但here似乎有一个验证器。

快速查看测试提示可以按如下方式使用:

var asm = require('asm.js');

try {
  report = asm.validate(String(function f(stdlib, foreign, heap) {
    "use asm";

    // this is what we're validating
    function f() {
      var x = 0, y = 0;
      x = ((x|0)%(y|0))|0;
    }

    return {};
  }));

  console.log('Validated!');
} catch(e) {
  console.error(e);
}

答案 1 :(得分:2)

您可以在Web控制台中检查它是否已编译:给定一个模块中有“use asm”的页面,它应该给出:

Error: successfully compiled asm.js code (total compilation time 0ms)

或者,为什么它无法编译为asm的实际错误。