Sha256: 89ef86f701174c78fe58f776b0477d1c99877b600afe871d439673a75d11394f

Contents?: true

Size: 1.36 KB

Versions: 6

Compression:

Stored size: 1.36 KB

Contents

# encoding: utf-8

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.'

        def on_block(node)
          method, _args, _body = *node
          on_node(:send, method) do |send_node|
            receiver, _method_name, *_args = *send_node
            if receiver && receiver.type == :block
              # The begin and end could also be braces, but we call the
              # variables do... and end...
              do_kw_loc, end_kw_loc = receiver.loc.begin, receiver.loc.end

              if do_kw_loc.line != end_kw_loc.line
                range =
                  Parser::Source::Range.new(end_kw_loc.source_buffer,
                                            end_kw_loc.begin_pos,
                                            method.loc.expression.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
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rubocop-0.22.0 lib/rubocop/cop/style/multiline_block_chain.rb
rubocop-0.21.0 lib/rubocop/cop/style/multiline_block_chain.rb
rubocop-0.20.1 lib/rubocop/cop/style/multiline_block_chain.rb
rubocop-0.20.0 lib/rubocop/cop/style/multiline_block_chain.rb
rubocop-0.19.1 lib/rubocop/cop/style/multiline_block_chain.rb
rubocop-0.19.0 lib/rubocop/cop/style/multiline_block_chain.rb