Sha256: 5137ec1ed0497a237aa653498aed5f944b4ceb9cbab03675ab475b03b0e15c71

Contents?: true

Size: 1.79 KB

Versions: 16

Compression:

Stored size: 1.79 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop checks for use of the lambda.(args) syntax.
      #
      # @example EnforcedStyle: call (default)
      #  # bad
      #  lambda.(x, y)
      #
      #  # good
      #  lambda.call(x, y)
      #
      # @example EnforcedStyle: braces
      #  # bad
      #  lambda.call(x, y)
      #
      #  # good
      #  lambda.(x, y)
      class LambdaCall < Base
        include ConfigurableEnforcedStyle
        extend AutoCorrector

        RESTRICT_ON_SEND = %i[call].freeze

        def on_send(node)
          return unless node.receiver

          if offense?(node)
            add_offense(node) do |corrector|
              opposite_style_detected
              autocorrect(corrector, node)
            end
          else
            correct_style_detected
          end
        end

        def autocorrect(corrector, node)
          if explicit_style?
            receiver = node.receiver.source
            replacement = node.source.sub("#{receiver}.", "#{receiver}.call")

            corrector.replace(node, replacement)
          else
            add_parentheses(node, corrector) unless node.parenthesized?
            corrector.remove(node.loc.selector)
          end
        end

        private

        def offense?(node)
          explicit_style? && node.implicit_call? || implicit_style? && !node.implicit_call?
        end

        def message(_node)
          if explicit_style?
            'Prefer the use of `lambda.call(...)` over `lambda.(...)`.'
          else
            'Prefer the use of `lambda.(...)` over `lambda.call(...)`.'
          end
        end

        def implicit_style?
          style == :braces
        end

        def explicit_style?
          style == :call
        end
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 3 rubygems

Version Path
rubocop-1.20.0 lib/rubocop/cop/style/lambda_call.rb
rubocop-1.19.1 lib/rubocop/cop/style/lambda_call.rb
rails_mini_profiler-0.2.0 vendor/bundle/ruby/3.0.0/gems/rubocop-1.18.3/lib/rubocop/cop/style/lambda_call.rb
rubocop-1.19.0 lib/rubocop/cop/style/lambda_call.rb
rubocop-1.18.4 lib/rubocop/cop/style/lambda_call.rb
rubocop-1.18.3 lib/rubocop/cop/style/lambda_call.rb
rubocop-1.18.2 lib/rubocop/cop/style/lambda_call.rb
rubocop-1.18.1 lib/rubocop/cop/style/lambda_call.rb
rubocop-1.18.0 lib/rubocop/cop/style/lambda_call.rb
rubocop-1.17.0 lib/rubocop/cop/style/lambda_call.rb
rubocop-1.16.1 lib/rubocop/cop/style/lambda_call.rb
rubocop-1.16.0 lib/rubocop/cop/style/lambda_call.rb
rubocop-1.15.0 lib/rubocop/cop/style/lambda_call.rb
cocRb-0.1.0 .bundle/ruby/3.0.0/gems/rubocop-1.14.0/lib/rubocop/cop/style/lambda_call.rb
rubocop-1.14.0 lib/rubocop/cop/style/lambda_call.rb
rubocop-1.13.0 lib/rubocop/cop/style/lambda_call.rb