Sha256: a86dbed5d17a182df23a055750eb60cad37791b753bd9e200b9168349f9015d9

Contents?: true

Size: 1.69 KB

Versions: 8

Compression:

Stored size: 1.69 KB

Contents

# encoding: utf-8
# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop checks for RuntimeError as the argument of raise/fail.
      #
      # It checks for code like this:
      #
      # @example
      #   # Bad
      #   raise RuntimeError, 'message'
      #
      #   # Bad
      #   raise RuntimeError.new('message')
      #
      #   # Good
      #   raise 'message'
      class RedundantException < Cop
        MSG_1 = 'Redundant `RuntimeError` argument can be removed.'.freeze
        MSG_2 = 'Redundant `RuntimeError.new` call can be replaced with ' \
                'just the message.'.freeze

        def on_send(node)
          exploded?(node) { return add_offense(node, :expression, MSG_1) }
          compact?(node) { add_offense(node, :expression, MSG_2) }
        end

        # Switch `raise RuntimeError, 'message'` to `raise 'message'`, and
        # `raise RuntimeError.new('message')` to `raise 'message'`.
        def autocorrect(node)
          exploded?(node) do |command, message|
            return lambda do |corrector|
              corrector.replace(node.source_range,
                                "#{command} #{message.source}")
            end
          end
          compact?(node) do |new_call, message|
            lambda do |corrector|
              corrector.replace(new_call.source_range, message.source)
            end
          end
        end

        def_node_matcher :exploded?, <<-PATTERN
          (send nil ${:raise :fail} (const nil :RuntimeError) $_)
        PATTERN

        def_node_matcher :compact?, <<-PATTERN
          (send nil {:raise :fail} $(send (const nil :RuntimeError) :new $_))
        PATTERN
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
fluent-plugin-detect-memb-exceptions-0.0.2 vendor/bundle/ruby/2.0.0/gems/rubocop-0.42.0/lib/rubocop/cop/style/redundant_exception.rb
fluent-plugin-detect-memb-exceptions-0.0.1 vendor/bundle/ruby/2.0.0/gems/rubocop-0.42.0/lib/rubocop/cop/style/redundant_exception.rb
rubocop-0.43.0 lib/rubocop/cop/style/redundant_exception.rb
rubocop-0.42.0 lib/rubocop/cop/style/redundant_exception.rb
rubocop-0.41.2 lib/rubocop/cop/style/redundant_exception.rb
rubocop-0.41.1 lib/rubocop/cop/style/redundant_exception.rb
rubocop-0.41.0 lib/rubocop/cop/style/redundant_exception.rb
rubocop-0.40.0 lib/rubocop/cop/style/redundant_exception.rb