Sha256: 9d794b965d7d2f7e417bc6680eb0a4684f2b977c4fdf3efb22837aa69a777801

Contents?: true

Size: 1.52 KB

Versions: 12

Compression:

Stored size: 1.52 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Performance
      # Identifies usages of `reverse.each` and change them to use `reverse_each` instead.
      #
      # If the return value is used, it will not be detected because the result will be different.
      #
      # [source,ruby]
      # ----
      # [1, 2, 3].reverse.each {} #=> [3, 2, 1]
      # [1, 2, 3].reverse_each {} #=> [1, 2, 3]
      # ----
      #
      # @example
      #   # bad
      #   items.reverse.each
      #
      #   # good
      #   items.reverse_each
      class ReverseEach < Base
        include RangeHelp
        extend AutoCorrector

        MSG = 'Use `reverse_each` instead of `reverse.each`.'
        RESTRICT_ON_SEND = %i[each].freeze

        def_node_matcher :reverse_each?, <<~MATCHER
          (call (call _ :reverse) :each)
        MATCHER

        def on_send(node)
          return if use_return_value?(node)

          reverse_each?(node) do
            range = offense_range(node)

            add_offense(range) do |corrector|
              corrector.replace(range, 'reverse_each')
            end
          end
        end
        alias on_csend on_send

        private

        def use_return_value?(node)
          !!node.ancestors.detect do |ancestor|
            ancestor.assignment? || ancestor.send_type? || ancestor.return_type?
          end
        end

        def offense_range(node)
          range_between(node.children.first.loc.selector.begin_pos, node.loc.selector.end_pos)
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 4 rubygems

Version Path
rubocop-performance-1.23.1 lib/rubocop/cop/performance/reverse_each.rb
rubocop-performance-1.23.0 lib/rubocop/cop/performance/reverse_each.rb
rubocop-performance-1.22.1 lib/rubocop/cop/performance/reverse_each.rb
rubocop-performance-1.22.0 lib/rubocop/cop/performance/reverse_each.rb
rubocop-performance-1.21.1 lib/rubocop/cop/performance/reverse_each.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-performance-1.21.0/lib/rubocop/cop/performance/reverse_each.rb
rubocop-performance-1.21.0 lib/rubocop/cop/performance/reverse_each.rb
mlh-rubocop-config-1.0.3 vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.20.2/lib/rubocop/cop/performance/reverse_each.rb
rubocop-performance-1.20.2 lib/rubocop/cop/performance/reverse_each.rb
getargv-0.3.3-universal-darwin vendor/bundle/ruby/3.3.0/gems/rubocop-performance-1.20.1/lib/rubocop/cop/performance/reverse_each.rb
rubocop-performance-1.20.1 lib/rubocop/cop/performance/reverse_each.rb
rubocop-performance-1.20.0 lib/rubocop/cop/performance/reverse_each.rb