File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
crates/ide_diagnostics/src Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change 24
24
//! don't yet have a great pattern for how to do them properly.
25
25
26
26
mod handlers {
27
- // pub(crate) mod add_reference_here;
28
27
pub ( crate ) mod break_outside_of_loop;
29
28
pub ( crate ) mod inactive_code;
30
29
pub ( crate ) mod incorrect_case;
@@ -34,18 +33,16 @@ mod handlers {
34
33
pub ( crate ) mod mismatched_arg_count;
35
34
pub ( crate ) mod missing_fields;
36
35
pub ( crate ) mod missing_match_arms;
37
- // pub(crate) mod missing_ok_or_some_in_tail_expr;
38
36
pub ( crate ) mod missing_unsafe;
39
37
pub ( crate ) mod no_such_field;
40
- // pub(crate) mod remove_this_semicolon;
41
38
pub ( crate ) mod replace_filter_map_next_with_find_map;
39
+ pub ( crate ) mod type_mismatch;
42
40
pub ( crate ) mod unimplemented_builtin_macro;
43
41
pub ( crate ) mod unresolved_extern_crate;
44
42
pub ( crate ) mod unresolved_import;
45
43
pub ( crate ) mod unresolved_macro_call;
46
44
pub ( crate ) mod unresolved_module;
47
45
pub ( crate ) mod unresolved_proc_macro;
48
- pub ( crate ) mod type_mismatch;
49
46
50
47
// The handlers below are unusual, the implement the diagnostics as well.
51
48
pub ( crate ) mod field_shorthand;
You can’t perform that action at this time.
0 commit comments