Module: Kernel

Defined in:
lib/ruby-debug.rb

Instance Method Summary collapse

Instance Method Details

#binding_n(n = 0) ⇒ Object

Returns a binding of n-th call frame



286
287
288
289
290
# File 'lib/ruby-debug.rb', line 286

def binding_n(n = 0)
  frame = Debugger.current_context.frames[n+1]
  raise "Unknown frame #{n}" unless frame
  frame.binding 
end

#debugger(steps = 1) ⇒ Object

Stops the current thread after a number of steps made.



279
280
281
# File 'lib/ruby-debug.rb', line 279

def debugger(steps = 1)
  Debugger.current_context.stop_next = steps
end