module RuboCop::Cop::MultilineExpressionIndentation
def kw_node_with_special_indentation(node)
def kw_node_with_special_indentation(node) node.each_ancestor.find do |a| next unless a.loc.respond_to?(:keyword) case a.type when :for then _, expression, = *a when :return then expression, = *a when *Util::MODIFIER_NODES then expression, = *a end within_node?(node, expression) if expression end end