class RubyLsp::Requests::DocumentLink

def initialize(uri, comments, dispatcher)

: (URI::Generic uri, Array[Prism::Comment] comments, Prism::Dispatcher dispatcher) -> void
def initialize(uri, comments, dispatcher)
  super()
  @response_builder = ResponseBuilders::CollectionResponseBuilder
    .new #: ResponseBuilders::CollectionResponseBuilder[Interface::DocumentLink]
  Listeners::DocumentLink.new(@response_builder, uri, comments, dispatcher)
end