Class: Byebug::UpCommand

Inherits:
Command 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, 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



211
212
213
214
215
# File 'lib/byebug/commands/frame.rb', line 211

def description
  %{
    up[ count]\tmove to higher frame
  }
end

.namesObject



207
208
209
# File 'lib/byebug/commands/frame.rb', line 207

def names
  %w(up)
end

Instance Method Details

#executeObject



200
201
202
203
204
# File 'lib/byebug/commands/frame.rb', line 200

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

#regexpObject



196
197
198
# File 'lib/byebug/commands/frame.rb', line 196

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