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)); }
void IAstVisitor.VisitQueryGroupClause(QueryGroupClause queryGroupClause) { Visit(EnterQueryGroupClause, LeaveQueryGroupClause, queryGroupClause); }
public override void VisitQueryGroupClause(QueryGroupClause queryGroupClause) { FixClauseIndentation(queryGroupClause, queryGroupClause.GroupKeyword); }