Class: Byebug::InfoCommand::ProgramCommand

Inherits:
Command
  • Object
show all
Defined in:
lib/byebug/commands/info/program.rb

Overview

Information about arguments of the current method/block

Instance Attribute Summary

Attributes inherited from Command

#processor

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

.descriptionObject



16
17
18
19
20
21
22
# File 'lib/byebug/commands/info/program.rb', line 16

def self.description
  "inf[o] p[rogram]\n\n\#{short_description}\n"
end

.regexpObject



12
13
14
# File 'lib/byebug/commands/info/program.rb', line 12

def self.regexp
  /^\s* p(?:rogram)? \s*$/x
end

.short_descriptionObject



24
25
26
# File 'lib/byebug/commands/info/program.rb', line 24

def self.short_description
  'Information about the current status of the debugged program.'
end

Instance Method Details

#executeObject



28
29
30
31
# File 'lib/byebug/commands/info/program.rb', line 28

def execute
  puts 'Program stopped. '
  format_stop_reason context.stop_reason
end