Actionscript 3.0 警告为错误
是否可以配置 Adobe Flash CS3 ActionScript 以使其将警告视为错误?
Is it possible to configure Adobe Flash CS3 ActionScript to make it treating warnings as errors?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Flash 有点不同,它有“警告”模式和“严格”模式。它们都是默认启用的,严格模式是您能获得的最佳模式。您看到的“警告”通常只是警告,让您知道您是否正在使用已弃用的方法或具有重复的变量名称等。来源:
http://www.bytearray.org/?p=931
如果您使用的是 flex 编译器,可能会感兴趣:
如何告诉 mxmlc 将警告视为错误?< /a>
Flash is a bit of a different beast, you've got "warnings" mode and "strict" mode. They're both enabled by default and strict mode is the best you're going to get. The "warnings" that you see are typically just warnings to let you know if you're using a deprecated method or have duplicate variable names etc. Sources:
http://www.bytearray.org/?p=931
May be of interest if you're using the flex compiler:
How do I tell mxmlc to treat warnings as errors?