internal override void CheckReference(XQueryASTCompiler compiler) { if (Content != null) { Content.CheckReference(compiler); } }
internal override ExprSingle CompileCore(XQueryASTCompiler compiler) { if (Content != null) { for (int i = 0; i < Content.Count; i++) { Content [i] = Content [i].Compile(compiler); } } return(this); }