Sha256: 03f37be349318087ab88ee7adf5931073f22f9cc03a7683dcae1bbb0a0d63c79
Contents?: true
Size: 607 Bytes
Versions: 109
Compression:
Stored size: 607 Bytes
Contents
module LanguageServer module Protocol module Interface class LinkedEditingRangeOptions def initialize(work_done_progress: nil) @attributes = {} @attributes[:workDoneProgress] = work_done_progress if work_done_progress @attributes.freeze end # @return [boolean] def work_done_progress attributes.fetch(:workDoneProgress) 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
109 entries across 109 versions & 15 rubygems