Sha256: f4b5d0272bf386b9affc28666ba0df1e9735b40cfd5d26a9cb8f1aef67e75f31
Contents?: true
Size: 523 Bytes
Versions: 4
Compression:
Stored size: 523 Bytes
Contents
module LanguageServer module Protocol module Interface class WorkspaceSymbolRegistrationOptions < WorkspaceSymbolOptions def initialize(work_done_progress: nil) @attributes = {} @attributes[:workDoneProgress] = work_done_progress if work_done_progress @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