module RuboCop::Cop::MultilineExpressionIndentation

def check(range, node, lhs, rhs)

def check(range, node, lhs, rhs)
  if range
    incorrect_style_detected(range, node, lhs, rhs)
  else
    correct_style_detected
  end
end