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