class RubyLsp::Store

def initialize(global_state)

: (GlobalState global_state) -> void
def initialize(global_state)
  @global_state = global_state
  @state = {} #: Hash[String, Document[untyped]]
  @features_configuration = {
    inlayHint: RequestConfig.new({
      enableAll: false,
      implicitRescue: false,
      implicitHashValue: false,
    }),
  } #: Hash[Symbol, RequestConfig]
  @client_name = "Unknown" #: String
end