Module: Kernel

Defined in:
lib/ruby-debug-base.rb

Instance Method Summary collapse

Instance Method Details

#binding_n(n = 0) ⇒ Object

Returns a binding of n-th call frame



190
191
192
# File 'lib/ruby-debug-base.rb', line 190

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.



183
184
185
# File 'lib/ruby-debug-base.rb', line 183

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