class Byebug::FrameCommand

def execute

def execute
  return print_frame @state.frame_pos unless @match[1]
  pos, err = get_int(@match[1], 'Frame')
  return errmsg(err) unless pos
  adjust_frame(pos, true)
end