Sha256: 77e624ea4376dba35553db3366a858a60688e4086c3d8c21a82bc881160c03ea

Contents?: true

Size: 722 Bytes

Versions: 5

Compression:

Stored size: 722 Bytes

Contents

module LanguageServer
  module Protocol
    module Interface
      class TextDocumentSaveRegistrationOptions < TextDocumentRegistrationOptions
        def initialize(document_selector:, 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_hash
          attributes
        end

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

Version data entries

5 entries across 5 versions & 1 rubygems

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