# File lib/hike/index.rb, line 91
    def stat(path)
      key = path.to_s
      if @stats.key?(key)
        @stats[key]
      elsif File.exist?(path)
        @stats[key] = File.stat(path)
      else
        @stats[key] = nil
      end
    end