Class: Byebug::ThreadCommand::StopSubcommand

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

Overview

Stops the specified thread

Instance Method Summary collapse

Methods included from Helpers::ThreadHelper

#context_from_thread, #display_context, #thread_arguments

Methods inherited from Command

#help, #initialize, #match, subcommands, to_name

Methods included from Helpers::StringHelper

#camelize, #prettify

Constructor Details

This class inherits a constructor from Byebug::Command

Instance Method Details

#descriptionObject



32
33
34
35
36
37
38
# File 'lib/byebug/commands/thread/stop.rb', line 32

def description
  <<-EOD
    th[read] st[op] <thnum>

    #{short_description}
  EOD
end

#executeObject



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

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

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

  context.suspend
  display_context(context)
end

#regexpObject



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

def regexp
  /^\s* st(?:op)? (?: \s* (\d+))? \s*$/x
end

#short_descriptionObject



28
29
30
# File 'lib/byebug/commands/thread/stop.rb', line 28

def short_description
  'Stops the execution of the specified thread'
end