use of org.eclipse.rdf4j.query.parser.serql.ast.ASTSameTerm in project rdf4j by eclipse.
the class QueryModelBuilder method visit.
@Override
public SameTerm visit(ASTSameTerm node, Object data) throws VisitorException {
ValueExpr leftArg = (ValueExpr) node.getLeftOperand().jjtAccept(this, null);
ValueExpr rightArg = (ValueExpr) node.getRightOperand().jjtAccept(this, null);
return new SameTerm(leftArg, rightArg);
}
Aggregations