Sha256: e8ef2768341abdf8f1c520dcd2015e556857d779af3caceab37313347dffd194
Contents?: true
Size: 1.36 KB
Versions: 28
Compression:
Stored size: 1.36 KB
Contents
# frozen_string_literal: true module RuboCop module Cop module Lint # Don't omit the accumulator when calling `next` in a `reduce` block. # # @example # # # bad # # result = (1..4).reduce(0) do |acc, i| # next if i.odd? # acc + i # end # # @example # # # good # # result = (1..4).reduce(0) do |acc, i| # next acc if i.odd? # acc + i # end class NextWithoutAccumulator < Base MSG = 'Use `next` with an accumulator argument in a `reduce`.' def on_block(node) on_block_body_of_reduce(node) do |body| void_next = body.each_node(:next).find do |n| n.children.empty? && parent_block_node(n) == node end add_offense(void_next) if void_next end end alias on_numblock on_block private # @!method on_block_body_of_reduce(node) def_node_matcher :on_block_body_of_reduce, <<~PATTERN { (block (call _recv {:reduce :inject} !sym) _blockargs $(begin ...)) (numblock (call _recv {:reduce :inject} !sym) _argscount $(begin ...)) } PATTERN def parent_block_node(node) node.each_ancestor(:block, :numblock).first end end end end end
Version data entries
28 entries across 28 versions & 8 rubygems