Module: Debugger::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



158
159
160
# File 'lib/ruby-debug.rb', line 158

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.



151
152
153
# File 'lib/ruby-debug.rb', line 151

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