There's no documentation for this item.
Source Code
# File breakpoint.rb, line 228 def handle_breakpoint(context, message, file = "", line = "", &block) # :nodoc: catch(:debug_return) do |value| eval(%{ @__bp_file = #{file.inspect} @__bp_line = #{line} extend Breakpoint::CommandBundle extend DRbUndumped if self }, context) rescue nil if not use_drb? then puts message IRB.start(nil, IRB::WorkSpace.new(context)) else @drb_service.add_breakpoint(context, message) end block.call if block end end
<code/>and<pre/>for code samples.