class RuboCop::Cop::Style::MixinGrouping

def check(send_node)

def check(send_node)
  if separated_style?
    check_separated_style(send_node)
  else
    check_grouped_style(send_node)
  end
end