Sha256: 2a07dde655fe557b550c2d309a88457202a797723dfd57d63659ca1fb4204a2f
Contents?: true
Size: 602 Bytes
Versions: 107
Compression:
Stored size: 602 Bytes
Contents
module LanguageServer module Protocol module Interface class CallHierarchyOptions 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
107 entries across 107 versions & 13 rubygems