File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -3787,6 +3787,7 @@ dependencies = [
37873787 " rustc_hir" ,
37883788 " rustc_index" ,
37893789 " rustc_parse" ,
3790+ " rustc_session" ,
37903791 " rustc_span" ,
37913792 " rustc_target" ,
37923793 " syntax" ,
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ rustc_feature = { path = "../librustc_feature" }
1717rustc_hir = { path = " ../librustc_hir" }
1818rustc_index = { path = " ../librustc_index" }
1919rustc_parse = { path = " ../librustc_parse" }
20+ rustc_session = { path = " ../librustc_session" }
2021rustc_target = { path = " ../librustc_target" }
2122syntax = { path = " ../libsyntax" }
2223rustc_span = { path = " ../librustc_span" }
Original file line number Diff line number Diff line change 77// or type checking or some other kind of complex analysis.
88
99use rustc:: lint;
10- use rustc:: session:: Session ;
1110use rustc_data_structures:: fx:: FxHashMap ;
1211use rustc_errors:: { struct_span_err, Applicability , FatalError } ;
1312use rustc_parse:: validate_attr;
13+ use rustc_session:: Session ;
1414use rustc_span:: source_map:: Spanned ;
1515use rustc_span:: symbol:: { kw, sym} ;
1616use rustc_span:: Span ;
You can’t perform that action at this time.
0 commit comments