Skip to content

Commit 4026fd7

Browse files
committed
Rename DiagnosticBuilder as Diag.
Much better! Note that this involves renaming (and updating the value of) `DIAGNOSTIC_BUILDER` in clippy.
1 parent d84567c commit 4026fd7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/parse/parser.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use std::path::{Path, PathBuf};
33

44
use rustc_ast::token::TokenKind;
55
use rustc_ast::{ast, attr, ptr};
6-
use rustc_errors::DiagnosticBuilder;
6+
use rustc_errors::Diag;
77
use rustc_parse::{new_parser_from_file, parser::Parser as RawParser};
88
use rustc_span::{sym, Span};
99
use thin_vec::ThinVec;
@@ -65,7 +65,7 @@ impl<'a> ParserBuilder<'a> {
6565
fn parser(
6666
sess: &'a rustc_session::parse::ParseSess,
6767
input: Input,
68-
) -> Result<rustc_parse::parser::Parser<'a>, Option<Vec<DiagnosticBuilder<'a>>>> {
68+
) -> Result<rustc_parse::parser::Parser<'a>, Option<Vec<Diag<'a>>>> {
6969
match input {
7070
Input::File(ref file) => catch_unwind(AssertUnwindSafe(move || {
7171
new_parser_from_file(sess, file, None)

src/parse/session.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use rustc_data_structures::sync::{IntoDynSyncSend, Lrc};
66
use rustc_errors::emitter::{DynEmitter, Emitter, HumanEmitter};
77
use rustc_errors::translation::Translate;
88
use rustc_errors::{
9-
ColorConfig, DiagCtxt, DiagInner, DiagnosticBuilder, ErrorGuaranteed, Level as DiagnosticLevel,
9+
ColorConfig, Diag, DiagCtxt, DiagInner, ErrorGuaranteed, Level as DiagnosticLevel,
1010
};
1111
use rustc_session::parse::ParseSess as RawParseSess;
1212
use rustc_span::{
@@ -300,7 +300,7 @@ impl ParseSess {
300300

301301
// Methods that should be restricted within the parse module.
302302
impl ParseSess {
303-
pub(super) fn emit_diagnostics(&self, diagnostics: Vec<DiagnosticBuilder<'_>>) {
303+
pub(super) fn emit_diagnostics(&self, diagnostics: Vec<Diag<'_>>) {
304304
for diagnostic in diagnostics {
305305
diagnostic.emit();
306306
}

0 commit comments

Comments
 (0)