void IAstVisitor.VisitQueryOrdering(QueryOrdering queryOrdering) { Visit(EnterQueryOrdering, LeaveQueryOrdering, queryOrdering); }
protected internal override bool DoMatch(AstNode other, PatternMatching.Match match) { QueryOrdering o = other as QueryOrdering; return(o != null && this.Direction == o.Direction && this.Expression.DoMatch(o.Expression, match)); }