mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 21:54:42 +00:00
Add fixmes
This commit is contained in:
parent
9d0196a491
commit
d70f4f5da5
1 changed files with 2 additions and 0 deletions
|
@ -18,7 +18,9 @@ pub struct DiagnosticsConfig {
|
||||||
|
|
||||||
#[derive(Debug, Default, Clone)]
|
#[derive(Debug, Default, Clone)]
|
||||||
pub(crate) struct DiagnosticCollection {
|
pub(crate) struct DiagnosticCollection {
|
||||||
|
// FIXME: should be FxHashMap<FileId, Vec<ra_id::Diagnostic>>
|
||||||
pub(crate) native: FxHashMap<FileId, Vec<lsp_types::Diagnostic>>,
|
pub(crate) native: FxHashMap<FileId, Vec<lsp_types::Diagnostic>>,
|
||||||
|
// FIXME: should be Vec<flycheck::Diagnostic>
|
||||||
pub(crate) check: FxHashMap<FileId, Vec<lsp_types::Diagnostic>>,
|
pub(crate) check: FxHashMap<FileId, Vec<lsp_types::Diagnostic>>,
|
||||||
pub(crate) check_fixes: CheckFixes,
|
pub(crate) check_fixes: CheckFixes,
|
||||||
changes: FxHashSet<FileId>,
|
changes: FxHashSet<FileId>,
|
||||||
|
|
Loading…
Reference in a new issue