# File lib/rake.rb, line 1291
1291:     def exclude?(fn)
1292:       calculate_exclude_regexp unless @exclude_re
1293:       fn =~ @exclude_re || @exclude_procs.any? { |p| p.call(fn) }
1294:     end