class YARD::CodeObjects::RootObject
Represents the root namespace object (the invisible Ruby module that holds all top level modules, class and other objects).
Public Instance Methods
Source
# File lib/yard/code_objects/root_object.rb, line 12 def equal?(other) other == :root ? true : super(other) end
Calls superclass method
Source
# File lib/yard/code_objects/root_object.rb, line 8 def inspect; @inspect ||= "#<yardoc root>" end
Source
# File lib/yard/code_objects/root_object.rb, line 10 def title; 'Top Level Namespace' end