Sha256: 4f39e7b1668ccdfa172ff242f6a378bcafe6161a47cacbf46ee8ea1ef6bd6408

Contents?: true

Size: 618 Bytes

Versions: 7

Compression:

Stored size: 618 Bytes

Contents

module LanguageServer
  module Protocol
    module Interfaces
      class TextDocumentSaveRegistrationOptions
        def initialize(include_text: nil)
          @attributes = {}

          @attributes[:includeText] = include_text if include_text

          @attributes.freeze
        end

        #
        # The client is supposed to include the content on save.
        #
        # @return [boolean]
        def include_text
          attributes.fetch(:includeText)
        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_save_registration_options.rb
language_server-protocol-0.1.0 lib/language_server/protocol/interfaces/text_document_save_registration_options.rb
language_server-0.4.0 lib/language_server/protocol/interfaces/text_document_save_registration_options.rb
language_server-0.3.1 lib/language_server/protocol/interfaces/text_document_save_registration_options.rb
language_server-0.3.0 lib/language_server/protocol/interfaces/text_document_save_registration_options.rb
language_server-0.2.0 lib/language_server/protocol/interfaces/text_document_save_registration_options.rb
language_server-0.1.0 lib/language_server/protocol/interfaces/text_document_save_registration_options.rb