# File lib/rake.rb, line 1543
1543:     def exclude?(fn)
1544:       calculate_exclude_regexp unless @exclude_re
1545:       fn =~ @exclude_re || @exclude_procs.any? { |p| p.call(fn) }
1546:     end