class RuboCop::Cop::Rails::SafeNavigation

foo&.bar { |e| e.baz }
foo&.bar(baz)
foo&.bar
# good
foo.try(:bar) { |e| e.baz }
foo.try(:bar, baz)
foo.try(:bar)
foo.try!(:bar) { |e| e.baz }
foo.try!(:bar, baz)
foo.try!(:bar)
# bad
@example ConvertTry: true
foo&.bar { |e| e.baz }
foo&.bar(baz)
foo&.bar
foo.try(:bar) { |e| e.baz }
foo.try(:bar, baz)
foo.try(:bar)
# good
foo.try!(:[], 0)
foo.try!(:bar) { |e| e.baz }
foo.try!(:bar, baz)
foo.try!(:bar)
# bad
@example ConvertTry: false (default)
if the target Ruby version is set to 2.3+
to convert ‘try`. It will convert code to use safe navigation
Converts usages of `try!` to `&.`. It can also be configured

def self.autocorrect_incompatible_with

def self.autocorrect_incompatible_with
  [Style::RedundantSelf]
end

def autocorrect(corrector, node)

def autocorrect(corrector, node)
  method_node, *params = *node.arguments
  method = method_node.source[1..]
  range = if node.receiver
            range_between(node.loc.dot.begin_pos, node.source_range.end_pos)
          else
            corrector.insert_before(node, 'self')
            node
          end
  corrector.replace(range, replacement(method, params))
end

def on_send(node)

def on_send(node)
  try_call(node) do |try_method, dispatch|
    return if try_method == :try && !cop_config['ConvertTry']
    return unless dispatch.sym_type? && dispatch.value.match?(/\w+[=!?]?/)
    add_offense(node, message: format(MSG, try: try_method)) do |corrector|
      autocorrect(corrector, node)
    end
  end
end

def replacement(method, params)

def replacement(method, params)
  new_params = params.map(&:source).join(', ')
  if method.end_with?('=')
    "&.#{method[0...-1]} = #{new_params}"
  elsif params.empty?
    "&.#{method}"
  else
    "&.#{method}(#{new_params})"
  end
end