193194195196197198199
throws VisitorException { TupleExpr leftArg = (TupleExpr)node.getLeftArg().jjtAccept(this, null); TupleExpr rightArg = (TupleExpr)node.getRightArg().jjtAccept(this, null); return new Intersection(leftArg, rightArg); }
229230231232233234235
194195196197198199200
230231232233234235236