Sha256: d7b987e839897b3b71b23ce0e56f0aa1849476e5aabae217d6c210f58df99001

Contents?: true

Size: 1.55 KB

Versions: 14

Compression:

Stored size: 1.55 KB

Contents

# encoding: utf-8
# frozen_string_literal: true

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

        def on_send(node)
          _receiver, selector, = *node

          # we care only about `call` methods
          return unless selector == :call

          if offense?(node)
            add_offense(node, :expression) { opposite_style_detected }
          else
            correct_style_detected
          end
        end

        private

        def offense?(node)
          # lambda.() does not have a selector
          style == :call && node.loc.selector.nil? ||
            style == :braces && node.loc.selector
        end

        def autocorrect(node)
          lambda do |corrector|
            if style == :call
              receiver_node, = *node
              receiver = receiver_node.source
              replacement = node.source.sub("#{receiver}.", "#{receiver}.call")
              corrector.replace(node.source_range, replacement)
            else
              corrector.remove(node.loc.selector)
            end
          end
        end

        def message(_node)
          if style == :call
            'Prefer the use of `lambda.call(...)` over `lambda.(...)`.'
          else
            'Prefer the use of `lambda.(...)` over `lambda.call(...)`.'
          end
        end
      end
    end
  end
end

Version data entries

14 entries across 14 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/lambda_call.rb
fluent-plugin-detect-memb-exceptions-0.0.1 vendor/bundle/ruby/2.0.0/gems/rubocop-0.42.0/lib/rubocop/cop/style/lambda_call.rb
rubocop-0.43.0 lib/rubocop/cop/style/lambda_call.rb
rubocop-0.42.0 lib/rubocop/cop/style/lambda_call.rb
rubocop-0.41.2 lib/rubocop/cop/style/lambda_call.rb
rubocop-0.41.1 lib/rubocop/cop/style/lambda_call.rb
rubocop-0.41.0 lib/rubocop/cop/style/lambda_call.rb
rubocop-0.40.0 lib/rubocop/cop/style/lambda_call.rb
rubocop-0.39.0 lib/rubocop/cop/style/lambda_call.rb
rubocop-0.38.0 lib/rubocop/cop/style/lambda_call.rb
rubocop-0.37.2 lib/rubocop/cop/style/lambda_call.rb
rubocop-0.37.1 lib/rubocop/cop/style/lambda_call.rb
rubocop-0.37.0 lib/rubocop/cop/style/lambda_call.rb
rubocop-0.36.0 lib/rubocop/cop/style/lambda_call.rb