class RubyIndexer::Entry::Namespace

def initialize(nesting, uri, location, name_location, comments)

: (Array[String] nesting, URI::Generic uri, Location location, Location name_location, String? comments) -> void
def initialize(nesting, uri, location, name_location, comments)
  @name = nesting.join("::") #: String
  # The original nesting where this namespace was discovered
  @nesting = nesting
  super(@name, uri, location, comments)
  @name_location = name_location
end