module RuboCop::Cop::StatementModifier

def non_eligible_body?(body)

def non_eligible_body?(body)
  body.nil? ||
    body.empty_source? ||
    body.begin_type? ||
    processed_source.commented?(body.source_range)
end