【问题标题】:Haxe/Nodejs debugging - Source mappingHaxe/Nodejs 调试 - 源映射
【发布时间】:2016-11-19 23:39:48
【问题描述】:

如何在 nodejs 上启用源映射?我希望将堆栈跟踪映射到 .hx 文件而不是生成的 .js 文件。

Main.hx:

package;

class Main
{
    public static function main()
        throw "test";
}

build.hxml:

-lib hxnodejs
-cp src
-js bin/index.js
-main Main

输出:(cd bin && node index.js)

/Users/kevin/Codes/testnodejs/bin/index.js:10
    throw new js__$Boot_HaxeError("test");
    ^
Error: test
    at Function.Main.main (/Users/kevin/Codes/testnodejs/bin/index.js:10:8)
    at console.undefined.log (/Users/kevin/Codes/testnodejs/bin/index.js:21:6)
    at Object. (/Users/kevin/Codes/testnodejs/bin/index.js:22:3)
    at Module._compile (module.js:434:26)
    at Object.Module._extensions..js (module.js:452:10)
    at Module.load (module.js:355:32)
    at Function.Module._load (module.js:310:12)
    at Function.Module.runMain (module.js:475:10)
    at startup (node.js:117:18)
    at node.js:951:3

【问题讨论】:

    标签: node.js haxe


    【解决方案1】:
    1. 从 npm 安装“source-map-support”

      npm install source-map-support
      
    2. 在您的 hxml 中启用 -debug(以便 Haxe 生成源映射文件)

    3. 在程序的最开始运行install()

      js.Lib.require('source-map-support').install();
      
    4. 将 wrapCallSite 函数分配给 haxe.CallStack

      haxe.CallStack.wrapCallSite = js.Lib.require('source-map-support').wrapCallSite;
      

    【讨论】:

      猜你喜欢
      • 2018-09-28
      • 2014-09-20
      • 1970-01-01
      • 2017-07-24
      • 1970-01-01
      • 1970-01-01
      • 2017-03-15
      • 2020-05-20
      • 1970-01-01
      相关资源
      最近更新 更多