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

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

#processvoid

This method returns an undefined value.

Main processing callback



7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/yard/handlers/ruby/legacy/module_function_handler.rb', line 7

process do
  if statement.tokens.size == 1
    self.scope = :module
  else
    tokval_list(statement.tokens[2..-1], :attr).each do |name|
      instance_method = MethodObject.new(namespace, name)
      class_method = MethodObject.new(namespace, name, :module)
      instance_method.copy_to(class_method)
      class_method.visibility = :public
    end
  end
end