class Byebug::DownCommand
Move the current frame down in the backtrace.
def description
def description prettify <<-EOD down[ count] Move to lower frame. EOD end
def execute
def execute pos, err = parse_steps(@match[1], 'Down') return errmsg(err) unless pos adjust_frame(-pos, false) end
def names
def names %w(down) end
def regexp
def regexp /^\s* down (?:\s+(\S+))? \s*$/x end