protected internal override bool DoMatch(AstNode other, PatternMatching.Match match) { TypeReferenceExpression o = other as TypeReferenceExpression; return(o != null && this.Type.DoMatch(o.Type, match)); }
void IAstVisitor.VisitTypeReferenceExpression(TypeReferenceExpression typeReferenceExpression) { Visit(EnterTypeReferenceExpression, LeaveTypeReferenceExpression, typeReferenceExpression); }