class RuboCop::Cop::Naming::InclusiveLanguage

def investigate_tokens

def investigate_tokens
  processed_source.tokens.each do |token|
    next unless check_token?(token.type)
    word_locations = scan_for_words(token.text)
    next if word_locations.empty?
    add_offenses_for_token(token, word_locations)
  end
end