module Steep module Index class SignatureSymbolProvider LSP = LanguageServer::Protocol SymbolInformation = Struct.new(:name, :kind, :container_name, :location, keyword_init: true) attr_reader :indexes def initialize() @indexes = [] end def self.test_type_name(query, type_name) case when query == "" true else type_name.to_s.upcase.include?(query.upcase) end end class <