Sha256: f6930b14bdbd08c1f1111cf6701ecfa2d663d10a000d92e0f360cabc4dd03fad
Contents?: true
Size: 440 Bytes
Versions: 4
Compression:
Stored size: 440 Bytes
Contents
module LanguageServer module Protocol module Interface # # Folding range provider options. # class FoldingRangeProviderOptions def initialize() @attributes = {} @attributes.freeze 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
4 entries across 4 versions & 1 rubygems