Class: Byebug::InfoCommand::ProgramCommand
- Defined in:
- lib/byebug/commands/info/program.rb
Overview
Information about arguments of the current method/block
Instance Attribute Summary
Attributes inherited from Command
Class Method Summary collapse
Instance Method Summary collapse
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
18 19 20 21 22 23 24 |
# File 'lib/byebug/commands/info/program.rb', line 18 def self.description <<-DESCRIPTION inf[o] p[rogram] #{short_description} DESCRIPTION end |
.regexp ⇒ Object
14 15 16 |
# File 'lib/byebug/commands/info/program.rb', line 14 def self.regexp /^\s* p(?:rogram)? \s*$/x end |
.short_description ⇒ Object
26 27 28 |
# File 'lib/byebug/commands/info/program.rb', line 26 def self.short_description "Information about the current status of the debugged program." end |
Instance Method Details
#execute ⇒ Object
30 31 32 33 |
# File 'lib/byebug/commands/info/program.rb', line 30 def execute puts "Program stopped. " format_stop_reason context.stop_reason end |