Sha256: 7d6a0cf042738a8e713ec6f8bd46dfa746eeee0b7ca4657ff257fadd02c28cc4

Contents?: true

Size: 1.23 KB

Versions: 15

Compression:

Stored size: 1.23 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop checks for chaining of a block after another block that spans
      # multiple lines.
      #
      # @example
      #
      #   Thread.list.find_all do |t|
      #     t.alive?
      #   end.map do |t|
      #     t.object_id
      #   end
      class MultilineBlockChain < Cop
        MSG = 'Avoid multi-line chains of blocks.'.freeze

        def on_block(node)
          method, _args, _body = *node
          method.each_node(:send) do |send_node|
            receiver, _method_name, *_args = *send_node
            next unless receiver && receiver.block_type?

            # The begin and end could also be braces, but we call the
            # variables do... and end...
            do_kw_loc = receiver.loc.begin
            end_kw_loc = receiver.loc.end
            next if do_kw_loc.line == end_kw_loc.line

            range = range_between(end_kw_loc.begin_pos,
                                  method.source_range.end_pos)
            add_offense(nil, range)
            # Done. If there are more blocks in the chain, they will be
            # found by subsequent calls to on_block.
            break
          end
        end
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 2 rubygems

Version Path
dirwatch-0.0.9 vendor/bundle/ruby/2.5.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/multiline_block_chain.rb
dirwatch-0.0.8 vendor/bundle/ruby/2.5.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/multiline_block_chain.rb
dirwatch-0.0.6 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/multiline_block_chain.rb
dirwatch-0.0.5 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/multiline_block_chain.rb
dirwatch-0.0.4 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/multiline_block_chain.rb
dirwatch-0.0.3 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/multiline_block_chain.rb
dirwatch-0.0.2 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/multiline_block_chain.rb
rubocop-0.48.1 lib/rubocop/cop/style/multiline_block_chain.rb
rubocop-0.48.0 lib/rubocop/cop/style/multiline_block_chain.rb
rubocop-0.47.1 lib/rubocop/cop/style/multiline_block_chain.rb
rubocop-0.47.0 lib/rubocop/cop/style/multiline_block_chain.rb
rubocop-0.46.0 lib/rubocop/cop/style/multiline_block_chain.rb
rubocop-0.45.0 lib/rubocop/cop/style/multiline_block_chain.rb
rubocop-0.44.1 lib/rubocop/cop/style/multiline_block_chain.rb
rubocop-0.44.0 lib/rubocop/cop/style/multiline_block_chain.rb