pry--pry/lib/pry/rbx_method.rb

14 lines
205 B
Ruby

class Pry
module RbxMethod
private
def core_code
MethodSource.source_helper(source_location)
end
def core_doc
MethodSource.comment_helper(source_location)
end
end
end