class Byebug::DownCommand

def execute

def execute
  pos, err = parse_steps(@match[1], "Down")
  return errmsg(err) unless pos
  jump_frames(-pos)
  ListCommand.new(processor).execute if Setting[:autolist]
end