Пример #1
0
        protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
        {
            QueryGroupClause o = other as QueryGroupClause;

            return(o != null && this.Projection.DoMatch(o.Projection, match) && this.Key.DoMatch(o.Key, match));
        }
Пример #2
0
 void IAstVisitor.VisitQueryGroupClause(QueryGroupClause queryGroupClause)
 {
     Visit(EnterQueryGroupClause, LeaveQueryGroupClause, queryGroupClause);
 }
 public override void VisitQueryGroupClause(QueryGroupClause queryGroupClause)
 {
     FixClauseIndentation(queryGroupClause, queryGroupClause.GroupKeyword);
 }