protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
        {
            TypeReferenceExpression o = other as TypeReferenceExpression;

            return(o != null && this.Type.DoMatch(o.Type, match));
        }
Exemple #2
0
 void IAstVisitor.VisitTypeReferenceExpression(TypeReferenceExpression typeReferenceExpression)
 {
     Visit(EnterTypeReferenceExpression, LeaveTypeReferenceExpression, typeReferenceExpression);
 }