我正在寻找一种方法,在antlr生成的输出.java文件中包含一些额外的字符串。是否有可用指令的完整列表?例如,给定解析器输出如下:
package com.foo.bar; //<-- this can be generated with @header { .... }
//antlr generated
import org.antlr.runtime.*;
...
//<-- is there a way to generate anything here?
public class MyParser {
//<--- or here?
public void f1(){ ... }
}
有没有办法生成在import语句之后出现的字符串(例如,类级别注释)或可能的方法注释?