Sha256: 09773035a741d7ad99fefb6ed24594ebb033ead3d101ad6ba1cad028a945872e
Contents?: true
Size: 682 Bytes
Versions: 6
Compression:
Stored size: 682 Bytes
Contents
module LanguageServer module Protocol module Interface # # Save options. # 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
6 entries across 6 versions & 1 rubygems