# File lib/pry/method.rb, line 318
    def source_file
      if source_location.nil?
        if !rbx? and source_type == :c
          info = pry_doc_info
          info.file if info
        end
      else
        source_location.first
      end
    end