class RubyLsp::Requests::InlayHints

def initialize(document, hints_configuration, dispatcher)

: ((RubyDocument | ERBDocument) document, RequestConfig hints_configuration, Prism::Dispatcher dispatcher) -> void
def initialize(document, hints_configuration, dispatcher)
  super()
  @response_builder = ResponseBuilders::CollectionResponseBuilder
    .new #: ResponseBuilders::CollectionResponseBuilder[Interface::InlayHint]
  Listeners::InlayHints.new(@response_builder, hints_configuration, dispatcher)
end