Represents the root namespace object (the invisible Ruby module that holds all top level modules, class and other objects).
# File lib/yard/code_objects/root_object.rb, line 10 def equal?(other) other == :root ? true : super(other) end
# File lib/yard/code_objects/root_object.rb, line 14 def hash; :root.hash end
# File lib/yard/code_objects/root_object.rb, line 7 def inspect; @inspect ||= "#<yardoc root>" end
# File lib/yard/code_objects/root_object.rb, line 6 def path; @path ||= "" end
# File lib/yard/code_objects/root_object.rb, line 8 def root?; true end
# File lib/yard/code_objects/root_object.rb, line 9 def title; 'Top Level Namespace' end