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