class Byebug::UpCommand

def description

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

def execute

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

def names

def names
  %w(up)
end

def regexp

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