Class: Debugger::ThreadListCommand
- Defined in:
- lib/ruby-debug/commands/threads.rb
Overview
:nodoc:
Constant Summary
Constants inherited from Command
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from Command
commands, #find, inherited, #initialize, load_commands, #match, method_missing, options
Constructor Details
This class inherits a constructor from Debugger::Command
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Debugger::Command
Class Method Details
.help(cmd) ⇒ Object
18 19 20 21 22 |
# File 'lib/ruby-debug/commands/threads.rb', line 18 def help(cmd) %{ th[read] l[ist]\t\t\tlist all threads } end |
.help_command ⇒ Object
14 15 16 |
# File 'lib/ruby-debug/commands/threads.rb', line 14 def help_command 'thread' end |
Instance Method Details
#execute ⇒ Object
8 9 10 11 |
# File 'lib/ruby-debug/commands/threads.rb', line 8 def execute contexts = Debugger.contexts.sort_by{|c| c.thnum} print_contexts(contexts) end |
#regexp ⇒ Object
4 5 6 |
# File 'lib/ruby-debug/commands/threads.rb', line 4 def regexp /^\s*th(?:read)?\s+l(?:ist)?\s*$/ end |