# File lib/rake.rb, line 1565
1565:     def exclude?(fn)
1566:       calculate_exclude_regexp unless @exclude_re
1567:       fn =~ @exclude_re || @exclude_procs.any? { |p| p.call(fn) }
1568:     end