Sha256: 79699cbae00d07ff83146589880c3aae5a53dbba081bef0f1abeb60350e0e8ff
Contents?: true
Size: 603 Bytes
Versions: 105
Compression:
Stored size: 603 Bytes
Contents
module LanguageServer module Protocol module Interface # # A workspace diagnostic report. # class WorkspaceDiagnosticReport def initialize(items:) @attributes = {} @attributes[:items] = items @attributes.freeze end # @return [WorkspaceDocumentDiagnosticReport[]] def items attributes.fetch(:items) 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
105 entries across 105 versions & 14 rubygems