Example #1
0
 void IAstVisitor.VisitQueryOrdering(QueryOrdering queryOrdering)
 {
     Visit(EnterQueryOrdering, LeaveQueryOrdering, queryOrdering);
 }
Example #2
0
        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));
        }