feat(lsp): add support for lsp Diagnostic{}.data (#4935)

This commit is contained in:
sigmaSd 2022-12-02 02:18:45 +01:00 committed by GitHub
parent 8291654326
commit 4960c41f18
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 8 deletions

View file

@ -45,4 +45,5 @@ pub struct Diagnostic {
pub code: Option<NumberOrString>,
pub tags: Vec<DiagnosticTag>,
pub source: Option<String>,
pub data: Option<serde_json::Value>,
}