Skip to content

Commit a1645e5

Browse files
authored
Rollup merge of rust-lang#93229 - mark-i-m:noquiet, r=eddyb
Remove DiagnosticBuilder.quiet r? `@eddyb` cc rust-lang#69426 `@GuillaumeGomez` `@Manishearth`
2 parents 8810af8 + cf382de commit a1645e5

File tree

3 files changed

+8
-25
lines changed

3 files changed

+8
-25
lines changed

compiler/rustc_errors/src/lib.rs

+1-16
Original file line numberDiff line numberDiff line change
@@ -445,9 +445,6 @@ struct HandlerInner {
445445
deduplicated_warn_count: usize,
446446

447447
future_breakage_diagnostics: Vec<Diagnostic>,
448-
449-
/// If set to `true`, no warning or error will be emitted.
450-
quiet: bool,
451448
}
452449

453450
/// A key denoting where from a diagnostic was stashed.
@@ -563,19 +560,10 @@ impl Handler {
563560
emitted_diagnostics: Default::default(),
564561
stashed_diagnostics: Default::default(),
565562
future_breakage_diagnostics: Vec::new(),
566-
quiet: false,
567563
}),
568564
}
569565
}
570566

571-
pub fn with_disabled_diagnostic<T, F: FnOnce() -> T>(&self, f: F) -> T {
572-
let prev = self.inner.borrow_mut().quiet;
573-
self.inner.borrow_mut().quiet = true;
574-
let ret = f();
575-
self.inner.borrow_mut().quiet = prev;
576-
ret
577-
}
578-
579567
// This is here to not allow mutation of flags;
580568
// as of this writing it's only used in tests in librustc_middle.
581569
pub fn can_emit_warnings(&self) -> bool {
@@ -946,7 +934,7 @@ impl HandlerInner {
946934
}
947935

948936
fn emit_diagnostic(&mut self, diagnostic: &Diagnostic) {
949-
if diagnostic.cancelled() || self.quiet {
937+
if diagnostic.cancelled() {
950938
return;
951939
}
952940

@@ -1170,9 +1158,6 @@ impl HandlerInner {
11701158
}
11711159

11721160
fn delay_as_bug(&mut self, diagnostic: Diagnostic) {
1173-
if self.quiet {
1174-
return;
1175-
}
11761161
if self.flags.report_delayed_bugs {
11771162
self.emit_diagnostic(&diagnostic);
11781163
}

compiler/rustc_session/src/session.rs

-4
Original file line numberDiff line numberDiff line change
@@ -476,10 +476,6 @@ impl Session {
476476
&self.parse_sess.span_diagnostic
477477
}
478478

479-
pub fn with_disabled_diagnostic<T, F: FnOnce() -> T>(&self, f: F) -> T {
480-
self.parse_sess.span_diagnostic.with_disabled_diagnostic(f)
481-
}
482-
483479
/// Analogous to calling methods on the given `DiagnosticBuilder`, but
484480
/// deduplicates on lint ID, span (if any), and message for this `Session`
485481
fn diag_once<'a, 'b>(

src/librustdoc/html/render/span_map.rs

+7-5
Original file line numberDiff line numberDiff line change
@@ -134,11 +134,13 @@ impl<'tcx> Visitor<'tcx> for SpanMapVisitor<'tcx> {
134134
if let Some(hir_id) = segment.hir_id {
135135
let hir = self.tcx.hir();
136136
let body_id = hir.enclosing_body_owner(hir_id);
137-
let typeck_results = self.tcx.sess.with_disabled_diagnostic(|| {
138-
self.tcx.typeck_body(
139-
hir.maybe_body_owned_by(body_id).expect("a body which isn't a body"),
140-
)
141-
});
137+
// FIXME: this is showing error messages for parts of the code that are not
138+
// compiled (because of cfg)!
139+
//
140+
// See discussion in https://github.com/rust-lang/rust/issues/69426#issuecomment-1019412352
141+
let typeck_results = self.tcx.typeck_body(
142+
hir.maybe_body_owned_by(body_id).expect("a body which isn't a body"),
143+
);
142144
if let Some(def_id) = typeck_results.type_dependent_def_id(expr.hir_id) {
143145
self.matches.insert(
144146
segment.ident.span,

0 commit comments

Comments
 (0)