save-analysis: Visit bounds in opaque types
This commit is contained in:
parent
b4151dd321
commit
0fafd615e5
@ -1356,10 +1356,10 @@ fn visit_item(&mut self, item: &'l ast::Item) {
|
|||||||
self.visit_ty(&ty);
|
self.visit_ty(&ty);
|
||||||
self.process_generic_params(ty_params, &qualname, item.id);
|
self.process_generic_params(ty_params, &qualname, item.id);
|
||||||
}
|
}
|
||||||
OpaqueTy(ref _bounds, ref ty_params) => {
|
OpaqueTy(ref bounds, ref ty_params) => {
|
||||||
let qualname = format!("::{}",
|
let qualname = format!("::{}",
|
||||||
self.tcx.def_path_str(self.tcx.hir().local_def_id_from_node_id(item.id)));
|
self.tcx.def_path_str(self.tcx.hir().local_def_id_from_node_id(item.id)));
|
||||||
// FIXME do something with _bounds
|
|
||||||
let value = String::new();
|
let value = String::new();
|
||||||
if !self.span.filter_generated(item.ident.span) {
|
if !self.span.filter_generated(item.ident.span) {
|
||||||
let span = self.span_from_span(item.ident.span);
|
let span = self.span_from_span(item.ident.span);
|
||||||
@ -1385,6 +1385,7 @@ fn visit_item(&mut self, item: &'l ast::Item) {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
self.process_bounds(bounds);
|
||||||
self.process_generic_params(ty_params, &qualname, item.id);
|
self.process_generic_params(ty_params, &qualname, item.id);
|
||||||
}
|
}
|
||||||
Mac(_) => (),
|
Mac(_) => (),
|
||||||
|
Loading…
Reference in New Issue
Block a user