class PryByebug::BreakCommand

def process

def process
  return if check_multiline_context
  PryByebug.check_file_context(target)
  option, = opts.to_hash.find { |key, _value| opts.present?(key) }
  return send(option_to_method(option)) if option
  return new_breakpoint unless args.empty?
  print_all
end