Sha256: 4cdb5e5e6e60faaf23ef156eb6539f56877c1b637b7eda16b4cfa5010f0675cd
Contents?: true
Size: 644 Bytes
Versions: 113
Compression:
Stored size: 644 Bytes
Contents
module LanguageServer module Protocol module Interface class SaveOptions 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_hash attributes end def to_json(*args) to_hash.to_json(*args) end end end end end
Version data entries
113 entries across 113 versions & 15 rubygems