Beispiel #1
0
 public virtual S VisitArrayCreateExpression(ArrayCreateExpression arrayCreateExpression, T data)
 {
     return(VisitChildren(arrayCreateExpression, data));
 }
Beispiel #2
0
        protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
        {
            ArrayCreateExpression o = other as ArrayCreateExpression;

            return(o != null && this.Type.DoMatch(o.Type, match) && this.Arguments.DoMatch(o.Arguments, match) && this.AdditionalArraySpecifiers.DoMatch(o.AdditionalArraySpecifiers, match) && this.Initializer.DoMatch(o.Initializer, match));
        }