# File lib/pry/default_commands/introspection.rb, line 250 def process_method raise CommandError, "Could not find method source" unless method_object.source code = "" code << make_header(method_object) code << "#{text.bold("Owner:")} #{method_object.owner || "N/A"}\n" code << "#{text.bold("Visibility:")} #{method_object.visibility}\n" code << "\n" code << Code.from_method(method_object, start_line). with_line_numbers(use_line_numbers?).to_s end