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