You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let ref_result = reference_definition(db, position.file_id, name_ref)?;
21
+
match ref_result {
22
+
Exact(nav) => res.extend(doc_text_for(db, nav)?),
23
+
Approximate(navs) => {
24
+
res.push("Failed to exactly resolve the symbol. This is probably because rust_analyzer does not yet support glob imports or traits. \nThese methods were found instead:".to_string());
0 commit comments