Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以通过词法分析器规则中的 {} 块将我的自定义代码注入 mToken() 吗?
不,你不能。由于这个mToken()方法在超类中是抽象的Lexer,从你自己的语法派生的词法分析器扩展了它,你也不能在@members{...}你的词法分析器部分覆盖它。
mToken()
Lexer
@members{...}