Class: Byebug::DisplayCommand

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

Constant Summary

Constants inherited from Command

Command::DEF_OPTIONS

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Command

commands, find, format_subcmd, format_subcmds, help, inherited, #initialize, load_commands, #match, method_missing, options, register_setting_get, register_setting_set, register_setting_var, settings, settings_map

Constructor Details

This class inherits a constructor from Byebug::Command

Class Method Details

.always_runObject



48
49
50
51
52
53
54
55
# File 'lib/byebug/commands/display.rb', line 48

def self.always_run
  Byebug.annotate = 0 unless Byebug.annotate
  if Byebug.annotate > 1
    0
  else
    2
  end
end

.descriptionObject



70
71
72
# File 'lib/byebug/commands/display.rb', line 70

def description
  %{disp[lay]\t\tdisplay expression list}
end

.namesObject



66
67
68
# File 'lib/byebug/commands/display.rb', line 66

def names
  %w(display)
end

Instance Method Details

#executeObject



61
62
63
# File 'lib/byebug/commands/display.rb', line 61

def execute
  print_display_expressions
end

#regexpObject



57
58
59
# File 'lib/byebug/commands/display.rb', line 57

def regexp
  /^\s*disp(?:lay)?$/
end