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



295
296
297
# File 'lib/ruby-debug.rb', line 295

def binding_n(n = 0)
  Debugger.current_context.frame_binding[n+1]
end

#debugger(steps = 1) ⇒ Object

Stops the current thread after a number of steps made.



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

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