module RuboCop::Cop::FirstElementLineBreak
def check_method_line_break(node, children)
def check_method_line_break(node, children) return if children.empty? return unless method_uses_parens?(node, children.first) check_children_line_break(node, children) end