Class: Byebug::ThreadCommand::ListCommand
- Includes:
- Helpers::ThreadHelper
- Defined in:
- lib/byebug/commands/thread/list.rb
Overview
Information about threads
Instance Attribute Summary
Attributes inherited from Command
Class Method Summary collapse
Instance Method Summary collapse
Methods included from Helpers::ThreadHelper
#context_from_thread, #current_thread?, #display_context, #thread_arguments
Methods inherited from Command
#arguments, columnize, #context, #frame, help, #initialize, match, to_s
Methods included from Helpers::StringHelper
Constructor Details
This class inherits a constructor from Byebug::Command
Class Method Details
.description ⇒ Object
18 19 20 21 22 23 24 |
# File 'lib/byebug/commands/thread/list.rb', line 18 def self.description " th[read] l[ist] <thnum>\n\n \#{short_description}\n EOD\nend\n" |
.regexp ⇒ Object
14 15 16 |
# File 'lib/byebug/commands/thread/list.rb', line 14 def self.regexp /^\s* l(?:ist)? \s*$/x end |
.short_description ⇒ Object
26 27 28 |
# File 'lib/byebug/commands/thread/list.rb', line 26 def self.short_description 'Lists all threads' end |
Instance Method Details
#execute ⇒ Object
30 31 32 33 34 35 36 37 38 |
# File 'lib/byebug/commands/thread/list.rb', line 30 def execute contexts = Byebug.contexts.sort_by(&:thnum) thread_list = prc('thread.context', contexts) do |context, _| thread_arguments(context) end print(thread_list) end |