class Pry::Byebug::Breakpoints::MethodBreakpoint


Breakpoint in a Class#method location

def initialize(byebug_bp, method)

def initialize(byebug_bp, method)
  __setobj__ byebug_bp
  @method = method
end

def source_code

def source_code
  Pry::Code.from_method(Pry::Method.from_str(@method))
end

def to_s

def to_s
  @method
end