调试 Haxe (ActionScript 3)
在 ActionScript 3 上下文中,是否有可靠的 Haxe 调试器?它们是否支持断点、条件断点、监视、局部变量和堆栈?
Are there any reliable debuggers for Haxe out there, in an ActionScript 3 context, and do they support breakpoints, conditional breakpoints, watches, locals and stacks?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
FlashDevelop现在有一个非常好的调试器,它支持haxe AS3。
对于 haxe,必须为每个项目启用它 - 请参阅项目编译器选项中的“启用调试器”。
FlashDevelop has a pretty good debugger now and it supports haxe AS3.
For haxe it must be enabled per project - see 'Enable Debugger' in the Project's Compiler options.
如果我错了,请纠正我,但我相信您可以将 -D fdb 添加到 hxml 构建参数中,然后在 FlashDevelop 中我认为您将能够使用断点等。
但我自己从未尝试过,因为我不在我的 Mac 上运行 FlashDevelop。
Correct me if I'm wrong but I believe you can add -D fdb to the hxml build arguments and then in FlashDevelop I think you will be able to use breakpoints and such.
Never tried it myself though as I don't run FlashDevelop on my Mac.
当您使用
Flow
运行时,只需添加--debug
标志,如下所示:When you run with
Flow
you just add the--debug
flag like this: