Class: Debugger::ThreadInspectCommand

Inherits:
Command
  • Object
show all
Defined in:
lib/ruby-debug-ide/commands/threads.rb

Overview

:nodoc:

Constant Summary

Constants inherited from Command

Command::DEF_OPTIONS

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Command

commands, file_filter_supported?, #find, inherited, #initialize, load_commands, #match, method_missing, options, unescape_incoming

Constructor Details

This class inherits a constructor from Debugger::Command

Class Method Details

.help(cmd) ⇒ Object



79
80
81
82
83
# File 'lib/ruby-debug-ide/commands/threads.rb', line 79

def help(cmd)
  %{
    th[read] in[spect] <nnn>\tswitch thread context to nnn but don't resume any threads
  }
end

.help_commandObject



75
76
77
# File 'lib/ruby-debug-ide/commands/threads.rb', line 75

def help_command
  'thread'
end

Instance Method Details

#executeObject



70
71
72
# File 'lib/ruby-debug-ide/commands/threads.rb', line 70

def execute
  @state.context = get_context(@match[1].to_i)      
end

#regexpObject



66
67
68
# File 'lib/ruby-debug-ide/commands/threads.rb', line 66

def regexp
  /^\s*th(?:read)?\s+in(?:spect)?\s+(\d+)\s*$/
end