class Byebug::FrameCommand

def execute

def execute
  return print(pr('frame.line', context.frame.to_hash)) unless @match[1]
  pos, err = get_int(@match[1], 'Frame')
  return errmsg(err) unless pos
  switch_to_frame(pos)
  ListCommand.new(processor).execute if Setting[:autolist]
end