method

context

v1_8_7_72 - Show latest stable - Class: DEBUGGER__
context(thread=Thread.current)
public

No documentation available.

# File lib/debug.rb, line 838
  def context(thread=Thread.current)
    c = thread[:__debugger_data__]
    unless c
      thread[:__debugger_data__] = c = Context.new
    end
    c
  end