Class: Byebug::ThreadCommand::ListCommand

Inherits:
Command
  • Object
show all
Includes:
Helpers::ThreadHelper
Defined in:
lib/byebug/commands/thread/list.rb

Overview

Information about threads

Instance Attribute Summary

Attributes inherited from Command

#processor

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

#camelize, #deindent, #prettify

Constructor Details

This class inherits a constructor from Byebug::Command

Class Method Details

.descriptionObject



18
19
20
21
22
23
24
# File 'lib/byebug/commands/thread/list.rb', line 18

def self.description
  <<-EOD
    th[read] l[ist] <thnum>

    #{short_description}
  EOD
end

.regexpObject



14
15
16
# File 'lib/byebug/commands/thread/list.rb', line 14

def self.regexp
  /^\s* l(?:ist)? \s*$/x
end

.short_descriptionObject



26
27
28
# File 'lib/byebug/commands/thread/list.rb', line 26

def self.short_description
  'Lists all threads'
end

Instance Method Details

#executeObject



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