Sha256: 602a1839fb464ace2d538271f5e74bb32c59efbdd184913903a4209084e0f9de

Contents?: true

Size: 775 Bytes

Versions: 6

Compression:

Stored size: 775 Bytes

Contents

module LanguageServer
  module Protocol
    module Interface
      class TextDocumentRegistrationOptions
        def initialize(document_selector:)
          @attributes = {}

          @attributes[:documentSelector] = document_selector

          @attributes.freeze
        end

        #
        # A document selector to identify the scope of the registration. If set to null
        # the document selector provided on the client side will be used.
        #
        # @return [DocumentFilter[]]
        def document_selector
          attributes.fetch(:documentSelector)
        end

        attr_reader :attributes

        def to_hash
          attributes
        end

        def to_json(*args)
          to_hash.to_json(*args)
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
language_server-protocol-3.14.0.2 lib/language_server/protocol/interface/text_document_registration_options.rb
language_server-protocol-3.14.0.1 lib/language_server/protocol/interface/text_document_registration_options.rb
language_server-protocol-3.14.0.0 lib/language_server/protocol/interface/text_document_registration_options.rb
language_server-protocol-3.12.0.0 lib/language_server/protocol/interface/text_document_registration_options.rb
language_server-protocol-3.7.0.0 lib/language_server/protocol/interface/text_document_registration_options.rb
language_server-protocol-0.5.0 lib/language_server/protocol/interface/text_document_registration_options.rb