class Byebug::DownCommand
:nodoc:
def execute
def execute pos = get_int(@match[1], "Down") return unless pos adjust_frame(-pos, false) end
def help(cmd)
def help(cmd) %{ down[count]\tmove to lower frame } end
def help_command
def help_command 'down' end
def regexp
def regexp /^\s* down (?:\s+(.*))? .*$/x end