object_class()
Returns the NormalClass “Object”, creating it if not found.
Records self as a location in “Object”.
# File lib/rdoc/top_level.rb, line 218 def object_class @object_class ||= begin oc = @store.find_class_named('Object') || add_class(RDoc::NormalClass, 'Object') oc.record_location self oc end end