class Byebug::InfoCommand::DisplaySubcommand
Information about display expressions
def description
def description <<-EOD inf[o] d[display] #{short_description} EOD end
def execute
def execute display = @state.display unless display.find { |d| d[0] } return puts('There are no auto-display expressions now.') end puts 'Auto-display expressions now in effect:' puts 'Num Enb Expression' display.each_with_index do |d, i| puts(format('%3d: %s %s', i + 1, d[0] ? 'y' : 'n', d[1])) end end
def regexp
def regexp /^\s* d(?:isplay)? \s*$/x end
def short_description
def short_description 'List of expressions to display when program stops' end