Netbeans 7 和 C/C++块
Netbeans 7 中的解析器不支持 Apple 的非标准语言扩展“块”(如闭包)。
我有点不确定为什么会这样,因为我认为解析器只是依赖于编译器。
是否有可能让 Netbeans 以任何方式识别块语法?
Xcode 4:
Netbeans 7:
Apple's non-standard language extension, "blocks" (like closures) isn't supported by the parser in Netbeans 7.
I'm a bit unsure as to why this is, since I thought the parser just relied on the compiler.
Is it possible to get Netbeans to recognize the block syntax in any way?
Xcode 4:
Netbeans 7:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大多数语法荧光笔不依赖于编译器,因为它们不使用编译器输出。在一般情况下,大多数都有某种类型的逻辑或规则在运行时进行语法突出显示。
否则你必须等待编译程序才能突出显示。
Most syntax highlighters do not depend on the compiler in that they do not use compiler outputs. In the general case, most have some type of logic or rule that does the syntax highlighting at runtime.
Otherwise you would have to wait to compile the program to have highlighting.