class RuboCop::Cop::Performance::FixedSize
def on_send(node)
def on_send(node) return if allowed_parent?(node.parent) counter(node) do |var, arg| return if allowed_variable?(var) || allowed_argument?(arg) add_offense(node, :expression) end end
def on_send(node) return if allowed_parent?(node.parent) counter(node) do |var, arg| return if allowed_variable?(var) || allowed_argument?(arg) add_offense(node, :expression) end end