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