1 22 23 24 package org.xquark.xquery.parser; 25 26 import org.xquark.xquery.typing.TypeException; 27 28 public class BinOpORExpression extends XQueryBooleanOperatorExpression implements Cloneable { 29 30 private static final String RCSRevision = "$Revision: 1.7 $"; 31 private static final String RCSName = "$Name: $"; 32 33 37 public void accept(ParserVisitor visitor) throws XQueryException { 38 visitor.visit(this); 39 } 40 41 45 public BinOpORExpression(XQueryExpression expression1, XQueryExpression expression2, XQueryModule parentModule) throws TypeException, XQueryException { 46 super(expression1,expression2); 47 setParentModule(parentModule); 48 if (parentModule != null && parentModule.getStaticContext().getTypeVisitor() != null) 49 accept(parentModule.getStaticContext().getTypeVisitor()); 50 } 51 52 53 } 54 | Popular Tags |