我已经生成了一个解析树,如下所示:
afs = new AntlrFileStream(fn);
lexer = new Verilog2001Lexer(afs);
cts = new CommonTokenStream(lexer);
parser = new Verilog2001Parser(cts);
tree = parser.source_text();
我想从隐藏通道中的标记创建新节点并将它们添加到解析树中。所以我想问你如何从令牌创建新节点?那么我如何将它们添加到解析树中的所需位置?我一直在查看 IParseTree 接口和 Context 对象,但我还没有弄清楚。