]> git.lizzy.rs Git - rust.git/commitdiff
Use scope_expr_id from ProbeCtxt
authorMichael Goulet <michael@errs.io>
Mon, 16 Jan 2023 22:53:02 +0000 (22:53 +0000)
committerMichael Goulet <michael@errs.io>
Mon, 16 Jan 2023 23:03:05 +0000 (23:03 +0000)
compiler/rustc_hir_typeck/src/method/probe.rs

index 948a14604d4376929fe0b49c6a0d3ee347ee8701..a2481431363ddb55088a46b1604b265c3d089686 100644 (file)
@@ -486,7 +486,7 @@ fn probe_op<OP, R>(
             probe_cx.assemble_inherent_candidates();
             match scope {
                 ProbeScope::TraitsInScope => {
-                    probe_cx.assemble_extension_candidates_for_traits_in_scope(scope_expr_id)
+                    probe_cx.assemble_extension_candidates_for_traits_in_scope()
                 }
                 ProbeScope::AllTraits => probe_cx.assemble_extension_candidates_for_all_traits(),
             };
@@ -889,9 +889,9 @@ fn elaborate_bounds<F>(
         }
     }
 
-    fn assemble_extension_candidates_for_traits_in_scope(&mut self, expr_hir_id: hir::HirId) {
+    fn assemble_extension_candidates_for_traits_in_scope(&mut self) {
         let mut duplicates = FxHashSet::default();
-        let opt_applicable_traits = self.tcx.in_scope_traits(expr_hir_id);
+        let opt_applicable_traits = self.tcx.in_scope_traits(self.scope_expr_id);
         if let Some(applicable_traits) = opt_applicable_traits {
             for trait_candidate in applicable_traits.iter() {
                 let trait_did = trait_candidate.def_id;