class LanguageServer::Protocol::Interface::UnchangedDocumentDiagnosticReport


report is still accurate.
A diagnostic report indicating that the last returned

def initialize(kind:, result_id:)

def initialize(kind:, result_id:)
  @attributes = {}
  @attributes[:kind] = kind
  @attributes[:resultId] = result_id
  @attributes.freeze
end

def kind

Returns:
  • (any) -
def kind
  attributes.fetch(:kind)
end

def result_id

Returns:
  • (string) -
def result_id
  attributes.fetch(:resultId)
end

def to_hash

def to_hash
  attributes
end

def to_json(*args)

def to_json(*args)
  to_hash.to_json(*args)
end