Class: Byebug::ThreadCommand::SwitchCommand

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

Overview

Switches to the specified thread

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, #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/switch.rb', line 18

def self.description
  <<-EOD
    th[read] sw[itch] <thnum>

    #{short_description}
  EOD
end

.regexpObject



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

def self.regexp
  /^\s* sw(?:itch)? (?: \s* (\d+))? \s*$/x
end

.short_descriptionObject



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

def self.short_description
  'Switches execution to the specified thread'
end

Instance Method Details

#executeObject



30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/byebug/commands/thread/switch.rb', line 30

def execute
  return puts(help) unless @match[1]

  context, err = context_from_thread(@match[1])
  return errmsg(err) if err

  display_context(context)

  context.switch

  processor.proceed!
end