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

            return(o != null && this.Type.DoMatch(o.Type, match));
        }
Beispiel #2
0
 public virtual S VisitTypeReferenceExpression(TypeReferenceExpression typeReferenceExpression, T data)
 {
     return(VisitChildren(typeReferenceExpression, data));
 }