# File lib/pry/module_candidate.rb, line 51 def source return @source if @source raise CommandError, "Could not locate source for #{wrapped}!" if file.nil? @source = strip_leading_whitespace(Pry::Code.from_file(file).expression_at(line, number_of_lines_in_first_chunk)) end