class RuboCop::Cop::Style::MultilineMemoization

def bad_rhs?(rhs)

def bad_rhs?(rhs)
  return false unless rhs.multiline?
  if style == :keyword
    rhs.begin_type?
  else
    rhs.kwbegin_type?
  end
end