Class: Byebug::ThreadCommand::StopCommand
- Includes:
- Helpers::ThreadHelper
- Defined in:
- lib/byebug/commands/thread/stop.rb
Overview
Stops the specified thread
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
#camelize, #deindent, #prettify
Constructor Details
This class inherits a constructor from Byebug::Command
Class Method Details
.description ⇒ Object
20 21 22 23 24 25 26 |
# File 'lib/byebug/commands/thread/stop.rb', line 20 def self.description <<-DESCRIPTION th[read] st[op] <thnum> #{short_description} DESCRIPTION end |
.regexp ⇒ Object
16 17 18 |
# File 'lib/byebug/commands/thread/stop.rb', line 16 def self.regexp /^\s* st(?:op)? (?: \s* (\d+))? \s*$/x end |
.short_description ⇒ Object
28 29 30 |
# File 'lib/byebug/commands/thread/stop.rb', line 28 def self.short_description "Stops the execution of the specified thread" end |
Instance Method Details
#execute ⇒ Object
32 33 34 35 36 37 38 39 40 |
# File 'lib/byebug/commands/thread/stop.rb', line 32 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 |