示例#1
0
 public FunctionDeclaration(XmlQualifiedName name,
                            XQueryFunctionArgumentList parameters,
                            SequenceType type,
                            EnclosedExpr expr)
 {
     this.name       = name;
     this.parameters = parameters;
     this.returnType = type;
     this.funcBody   = expr;
 }
示例#2
0
		public FunctionDeclaration (XmlQualifiedName name,
			XQueryFunctionArgumentList parameters,
			SequenceType type,
			EnclosedExpr expr)
		{
			this.name = name;
			this.parameters = parameters;
			this.returnType = type;
			this.funcBody = expr;
		}