Exemple #1
0
 void IAstVisitor.VisitIndexerExpression(IndexerExpression indexerExpression)
 {
     Visit(EnterIndexerExpression, LeaveIndexerExpression, indexerExpression);
 }
        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));
        }