Class: Byebug::DownCommand

Inherits:
Command
  • Object
show all
Defined in:
lib/byebug/commands/frame.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

.descriptionObject



230
231
232
# File 'lib/byebug/commands/frame.rb', line 230

def description
  %{down[ count]\tmove to lower frame}
end

.namesObject



226
227
228
# File 'lib/byebug/commands/frame.rb', line 226

def names
  %w(down)
end

Instance Method Details

#executeObject



219
220
221
222
223
# File 'lib/byebug/commands/frame.rb', line 219

def execute
  pos = get_int(@match[1], "Down")
  return unless pos
  adjust_frame(-pos, false)
end

#regexpObject



215
216
217
# File 'lib/byebug/commands/frame.rb', line 215

def regexp
  /^\s* down (?:\s+(.*))? .*$/x
end