Sha256: 64ff664b1ed0f0436ca6601198d647a2ba03ebc118b761f98a8a50ed52302e2e

Contents?: true

Size: 511 Bytes

Versions: 7

Compression:

Stored size: 511 Bytes

Contents

module LanguageServer
  module Protocol
    module Interfaces
      class TextDocumentIdentifier
        def initialize(uri:)
          @attributes = {}

          @attributes[:uri] = uri

          @attributes.freeze
        end

        #
        # The text document's URI.
        #
        # @return [string]
        def uri
          attributes.fetch(:uri)
        end

        attr_reader :attributes

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

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
language_server-protocol-0.2.0 lib/language_server/protocol/interfaces/text_document_identifier.rb
language_server-protocol-0.1.0 lib/language_server/protocol/interfaces/text_document_identifier.rb
language_server-0.4.0 lib/language_server/protocol/interfaces/text_document_identifier.rb
language_server-0.3.1 lib/language_server/protocol/interfaces/text_document_identifier.rb
language_server-0.3.0 lib/language_server/protocol/interfaces/text_document_identifier.rb
language_server-0.2.0 lib/language_server/protocol/interfaces/text_document_identifier.rb
language_server-0.1.0 lib/language_server/protocol/interfaces/text_document_identifier.rb