class Pry::Byebug::Breakpoints::MethodBreakpoint
Breakpoint in a Class#method location
Public Class Methods
Source
# File lib/pry/byebug/breakpoints.rb, line 30 def initialize(byebug_bp, method) __setobj__ byebug_bp @method = method end
Public Instance Methods
Source
# File lib/pry/byebug/breakpoints.rb, line 35 def source_code Pry::Code.from_method(Pry::Method.from_str(@method)) end