Class: Byebug::ThreadCommand
- Includes:
- Subcommands
- Defined in:
- lib/byebug/commands/thread.rb,
lib/byebug/commands/thread/list.rb,
lib/byebug/commands/thread/stop.rb,
lib/byebug/commands/thread/resume.rb,
lib/byebug/commands/thread/switch.rb,
lib/byebug/commands/thread/current.rb
Overview
Reopens the thread
command to define the current
subcommand
Defined Under Namespace
Classes: CurrentCommand, ListCommand, ResumeCommand, StopCommand, SwitchCommand
Instance Attribute Summary
Attributes inherited from Command
Class Method Summary collapse
Methods included from Subcommands
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
22 23 24 25 26 27 28 |
# File 'lib/byebug/commands/thread.rb', line 22 def self.description <<-DESCRIPTION th[read] <subcommand> #{short_description} DESCRIPTION end |
.regexp ⇒ Object
18 19 20 |
# File 'lib/byebug/commands/thread.rb', line 18 def self.regexp /^\s* th(?:read)? (?:\s+ (.+))? \s*$/x end |
.short_description ⇒ Object
30 31 32 |
# File 'lib/byebug/commands/thread.rb', line 30 def self.short_description "Commands to manipulate threads" end |