Make untracked.source_span lockable so that resolution can still write to it when using TyCtxt
This commit is contained in:
parent
ade3dceb38
commit
6924e3c374
6 changed files with 12 additions and 12 deletions
|
@ -155,7 +155,7 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
|
|||
if !candidates.is_empty() {
|
||||
show_candidates(
|
||||
&self.tcx.sess,
|
||||
&self.untracked.source_span,
|
||||
&self.untracked.source_span.read(),
|
||||
&mut err,
|
||||
span,
|
||||
&candidates,
|
||||
|
@ -688,7 +688,7 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
|
|||
}
|
||||
show_candidates(
|
||||
&self.tcx.sess,
|
||||
&self.untracked.source_span,
|
||||
&self.untracked.source_span.read(),
|
||||
&mut err,
|
||||
Some(span),
|
||||
&import_suggestions,
|
||||
|
@ -1353,7 +1353,7 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
|
|||
self.lookup_import_candidates(ident, Namespace::MacroNS, parent_scope, is_expected);
|
||||
show_candidates(
|
||||
&self.tcx.sess,
|
||||
&self.untracked.source_span,
|
||||
&self.untracked.source_span.read(),
|
||||
err,
|
||||
None,
|
||||
&import_suggestions,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue