Class: YARD::Handlers::Ruby::ModuleHandler
Overview
Handles the declaration of a module
Constant Summary
Instance Attribute Summary
Attributes inherited from Base
#namespace, #owner, #parser, #scope, #statement, #visibility
Instance Method Summary (collapse)
-
- (Object) process
Main processing callback.
Methods inherited from Base
handles?, meta_type, method_call, #parse_block
Methods included from Parser::Ruby
Methods inherited from Base
clear_subclasses, #ensure_loaded!, handlers, handles, handles?, #initialize, namespace_only, namespace_only?, #parse_block, process, #push_state, #register, subclasses
Constructor Details
This class inherits a constructor from YARD::Handlers::Base
Instance Method Details
- (Object) process
Main processing callback
5 6 7 8 9 |
# File 'lib/yard/handlers/ruby/module_handler.rb', line 5 process do modname = statement[0].source mod = register ModuleObject.new(namespace, modname) parse_block(statement[1], :namespace => mod) end |