use of org.eclipse.xtext.nodemodel.impl.CompositeNodeWithSemanticElement in project xtext-core by eclipse.
the class LazyLinkerTest method newSimpleNodeAdapter.
private ICompositeNode newSimpleNodeAdapter(final INode... nodes) {
NodeModelBuilder builder = new NodeModelBuilder();
ICompositeNode result = new CompositeNodeWithSemanticElement();
for (INode node : nodes) {
builder.addChild(result, (AbstractNode) node);
}
return result;
}
Aggregations