Sha256: 90a10abc1fc5832b8ec2bb12d140cc9ceefca6606e2a9253e28d0bc97b5db590

Contents?: true

Size: 1.34 KB

Versions: 2

Compression:

Stored size: 1.34 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Lint
      # Emulates the following Ruby warning in Ruby 3.3.
      #
      # [source,ruby]
      # ----
      # $ ruby -e '0.times { it }'
      # -e:1: warning: `it` calls without arguments will refer to the first block param in Ruby 3.4;
      # use it() or self.it
      # ----
      #
      # `it` calls without arguments will refer to the first block param in Ruby 3.4.
      # So use `it()` or `self.it` to ensure compatibility.
      #
      # @example
      #
      #   # bad
      #   do_something { it }
      #
      #   # good
      #   do_something { it() }
      #   do_something { self.it }
      #
      class ItWithoutArgumentsInBlock < Base
        include NodePattern::Macros

        MSG = '`it` calls without arguments will refer to the first block param in Ruby 3.4; ' \
              'use `it()` or `self.it`.'
        RESTRICT_ON_SEND = %i[it].freeze

        def on_send(node)
          return unless (block_node = node.each_ancestor(:block).first)
          return unless block_node.arguments.empty_and_without_delimiters?

          add_offense(node) if deprecated_it_method?(node)
        end

        def deprecated_it_method?(node)
          !node.receiver && node.arguments.empty? && !node.parenthesized? && !node.block_literal?
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rubocop-1.68.0 lib/rubocop/cop/lint/it_without_arguments_in_block.rb
rubocop-1.67.0 lib/rubocop/cop/lint/it_without_arguments_in_block.rb