本文整理汇总了Java中org.antlr.runtime.tree.TreeAdaptor.addChild方法的典型用法代码示例。如果您正苦于以下问题:Java TreeAdaptor.addChild方法的具体用法?Java TreeAdaptor.addChild怎么用?Java TreeAdaptor.addChild使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.antlr.runtime.tree.TreeAdaptor
的用法示例。
在下文中一共展示了TreeAdaptor.addChild方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: addAttribute
import org.antlr.runtime.tree.TreeAdaptor; //导入方法依赖的package包/类
/**
* Add a new attribute to a parent node.
* @param adaptor the tree helper
* @param parent parent node
* @param tokenType the new node token type
* @param tokenText the new node name
* @param value the new node value
* @return a new node that was just added to parent
*/
private Object addAttribute(
final TreeAdaptor adaptor,
final Object parent,
final int tokenType,
final String tokenText, final String value) {
Object node = adaptor.create(tokenType, tokenText);
if (value != null) {
String[] values = value.split("\\s\\|\\s");
for (String avalue : values) {
Object nodeValue = adaptor.create(CobolStructureParser.LITERAL, avalue);
adaptor.addChild(node, nodeValue);
}
}
adaptor.addChild(parent, node);
return node;
}
示例2: buildAstForGroupTemplates
import org.antlr.runtime.tree.TreeAdaptor; //导入方法依赖的package包/类
private TemplateGroupRuleReturnScope buildAstForGroupTemplates(TemplateGroupWrapper group) {
TreeAdaptor adaptor = new CommonTreeAdaptor();
Object tree = adaptor.nil();
for (CompiledST template : group.getCompiledTemplates()) {
adaptor.addChild(tree, template.ast);
}
return new TemplateGroupRuleReturnScope(group, (CommonTree)tree);
}