# File lib/rdoc/top_level.rb, line 224
  def self.new file_name
    if top_level = @all_files_hash[file_name] then
      top_level
    else
      top_level = super
      @all_files_hash[file_name] = top_level
      top_level
    end
  end