# File lib/facet/filelist.rb, line 72
  def initialize(*patterns)
    @pending_add = []
    @pending = false
    @exclude_patterns = DEFAULT_IGNORE_PATTERNS.dup
    @exclude_re = nil
#     @extent_only = false
    patterns.each { |pattern| include(pattern) }
    yield self if block_given?
  end