Method: YARD::Handlers::Ruby::Legacy::PrivateConstantHandler#process

Defined in:
lib/yard/handlers/ruby/legacy/private_constant_handler.rb

#processvoid

This method returns an undefined value.

Main processing callback

[View source]

6
7
8
9
10
# File 'lib/yard/handlers/ruby/legacy/private_constant_handler.rb', line 6

process do
  tokval_list(statement.tokens[2..-1], :attr, TkCONSTANT).each do |name|
    privatize_constant name
  end
end