• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/ruby-106/ruby/lib/rdoc/

Lines Matching defs:RDoc

5 class RDoc::ClassModule < RDoc::Context
9 # RDoc 3.7
15 # RDoc 3.13
18 # RDoc 4.0
44 # Return a RDoc::ClassModule of class +class_type+ that is a copy
47 # TODO move to RDoc::NormalClass (I think)
132 when RDoc::Comment then
162 # RDoc::NormalModule instances (see RDoc::Include#module).
192 when RDoc::Comment then
206 # See RDoc::Store#complete
232 # RDoc::ClassModule exists.
273 @full_name ||= if RDoc::ClassModule === parent then
342 @comment_location = if RDoc::Markup::Document === @comment.parts.first then
345 RDoc::Markup::Document.new @comment
352 attr = RDoc::Attr.new nil, name, rw, nil, singleton
356 attr.record_location RDoc::TopLevel.new file
361 when RDoc::Constant then
364 constant = add_constant RDoc::Constant.new(constant, nil, comment)
365 constant.record_location RDoc::TopLevel.new file
370 incl = add_include RDoc::Include.new(name, comment)
371 incl.record_location RDoc::TopLevel.new file
379 method = RDoc::AnyMethod.new nil, name
381 method.record_location RDoc::TopLevel.new file
388 ext = add_extend RDoc::Extend.new(name, comment)
389 ext.record_location RDoc::TopLevel.new file
402 record_location RDoc::TopLevel.new filename
563 # Parses +comment_location+ into an RDoc::Markup::Document composed of
564 # multiple RDoc::Markup::Documents with their file set.
577 RDoc::Markup::Document.new(*docs)
578 when RDoc::Comment then
582 when RDoc::Markup::Document then
649 # Search record used by RDoc::Generator::JsonIndex
712 # RDoc::Store#modules_hash or RDoc::Store#classes_hash
713 # by a copy that has <tt>RDoc::ClassModule#is_alias_for</tt> set to
729 unless RDoc::TopLevel === cm_alias.parent then