コード例 #1
0
 public virtual S VisitIndexerExpression(IndexerExpression indexerExpression, T data)
 {
     return(VisitChildren(indexerExpression, data));
 }
コード例 #2
0
        protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
        {
            IndexerExpression o = other as IndexerExpression;

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