123456789_123456789_123456789_123456789_123456789_

Class: IRB::Command::Debug

Do not use. This class is for internal use only.
Relationships & Source Files
Extension / Inclusion / Inheritance Descendants
Subclasses:
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Base
Instance Chain:
self, Base
Inherits: IRB::Command::Base
Defined in: lib/irb/command/debug.rb

Constant Summary

Class Method Summary

Instance Attribute Summary

Base - Inherited

Instance Method Summary

Constructor Details

This class inherits a constructor from IRB::Command::Base

Instance Attribute Details

#binding_irb?Boolean (readonly, private)

[ GitHub ]

  
# File 'lib/irb/command/debug.rb', line 66

def binding_irb?
  caller.any? do |frame|
    BINDING_IRB_FRAME_REGEXPS.any? do |regexp|
      frame.match?(regexp)
    end
  end
end

Instance Method Details

#execute(_arg)

[ GitHub ]

  
# File 'lib/irb/command/debug.rb', line 16

def execute(_arg)
  execute_debug_command
end

#execute_debug_command(pre_cmds: nil, do_cmds: nil)

[ GitHub ]

  
# File 'lib/irb/command/debug.rb', line 20

def execute_debug_command(pre_cmds: nil, do_cmds: nil)
  pre_cmds = pre_cmds&.rstrip
  do_cmds = do_cmds&.rstrip

  if irb_context.with_debugger
    # If IRB is already running with a debug session, throw the command and IRB.debug_readline will pass it to the debugger.
    if cmd = pre_cmds || do_cmds
      throw :IRB_EXIT, cmd
    else
      puts "IRB is already running with a debug session."
      return
    end
  else
    # If IRB is not running with a debug session yet, then:
    # 1. Check if the debugging command is run from a `binding.irb` call.
    # 2. If so, try setting up the debug gem.
    # 3. Insert a debug breakpoint at `Irb#debug_break` with the intended command.
    # 4. Exit the current Irb#run call via `throw :IRB_EXIT`.
    # 5. `Irb#debug_break` will be called and trigger the breakpoint, which will run the intended command.
    unless binding_irb?
      puts "Debugging commands are only available when IRB is started with binding.irb"
      return
    end

    if IRB.respond_to?(:JobManager)
      warn "Can't start the debugger when IRB is running in a multi-IRB session."
      return
    end

    unless IRB::Debug.setup(irb_context.irb)
      puts <<~MSG
        You need to install the debug gem before using this command.
        If you use `bundle exec`, please add `gem "debug"` into your Gemfile.
      MSG
      return
    end

    IRB::Debug.insert_debug_break(pre_cmds: pre_cmds, do_cmds: do_cmds)

    # exit current Irb#run call
    throw :IRB_EXIT
  end
end