method
parse_module
v1_9_2_180 -
Show latest stable
- Class:
RDoc::Parser::Ruby
parse_module(container, single, tk, comment)public
No documentation available.
# File lib/rdoc/parser/ruby.rb, line 1079
def parse_module(container, single, tk, comment)
container, name_t = get_class_or_module container
name = name_t.name
mod = container.add_module RDoc::NormalModule, name
mod.record_location @top_level
read_documentation_modifiers mod, RDoc::CLASS_MODIFIERS
parse_statements(mod)
mod.comment = comment
@stats.add_module mod
end