Parent

Debugger::Context

Public Instance Methods

__c_frame_binding(frame) click to toggle source
Alias for: frame_binding
frame_binding(frame) click to toggle source
# File lib/ruby-debug-base.rb, line 20
def frame_binding(frame)
  __c_frame_binding(frame) || hbinding(frame)
end
Also aliased as: __c_frame_binding
inspect() click to toggle source
# File lib/debugger/test/context.rb, line 4
def inspect
  values = %{
    thread thnum stop_reason suspended? tracing ignored? stack_size dead? frame_line frame_file frame_self
  }.map do |field|
    "#{field}: #{send(field)}"
  end.join(", ")
  "#<Debugger::Context #{values}>"
end
interrupt() click to toggle source
# File lib/ruby-debug-base.rb, line 15
def interrupt
  self.stop_next = 1
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.