Sha256: 9ec2b52fee6a607c09f7bbe148019e65c777997ad098d5f421410a3d19e0a9bd
Contents?: true
Size: 606 Bytes
Versions: 109
Compression:
Stored size: 606 Bytes
Contents
module LanguageServer module Protocol module Interface class DocumentHighlightOptions 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