diff options
Diffstat (limited to 'crates/hir/src')
-rw-r--r-- | crates/hir/src/diagnostics.rs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/crates/hir/src/diagnostics.rs b/crates/hir/src/diagnostics.rs index f7fd3e237..5343a036c 100644 --- a/crates/hir/src/diagnostics.rs +++ b/crates/hir/src/diagnostics.rs | |||
@@ -7,12 +7,3 @@ pub use hir_ty::diagnostics::{ | |||
7 | IncorrectCase, MismatchedArgCount, MissingFields, MissingMatchArms, MissingOkOrSomeInTailExpr, | 7 | IncorrectCase, MismatchedArgCount, MissingFields, MissingMatchArms, MissingOkOrSomeInTailExpr, |
8 | NoSuchField, RemoveThisSemicolon, ReplaceFilterMapNextWithFindMap, | 8 | NoSuchField, RemoveThisSemicolon, ReplaceFilterMapNextWithFindMap, |
9 | }; | 9 | }; |
10 | |||
11 | // PHIL: | ||
12 | // hir/src/diagnostics.rs - just pub uses the type from hir_ty::diagnostics (DONE) | ||
13 | // hir_ty/src/diagnostics.rs - defines the type (DONE) | ||
14 | // hir_ty/src/diagnostics.rs - plus a test (DONE) <--- one example found, need to copy the not-applicable tests from the assist version | ||
15 | // ide/src/diagnostics.rs - define handler for when this diagnostic is raised (DONE) | ||
16 | |||
17 | // ide/src/diagnostics/fixes.rs - pulls in type from hir, and impls DiagnosticWithFix (TODO) | ||
18 | // hir_ty/src/diagnostics/expr.rs - do the real work (TODO) | ||