Skip to content

Commit 381ef81

Browse files
committed
Stop using DiagnosticBuilder::buffer in the parser.
One consequence is that errors returned by `maybe_new_parser_from_source_str` now must be consumed, so a bunch of places that previously ignored those errors now cancel them. (Most of them explicitly dropped the errors before. I guess that was to indicate "we are explicitly ignoring these", though I'm not 100% sure.)
1 parent 192c4a0 commit 381ef81

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
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::Diagnostic;
6+
use rustc_errors::DiagnosticBuilder;
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<Diagnostic>>> {
68+
) -> Result<rustc_parse::parser::Parser<'a>, Option<Vec<DiagnosticBuilder<'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

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ use std::sync::atomic::{AtomicBool, Ordering};
44
use rustc_data_structures::sync::{IntoDynSyncSend, Lrc};
55
use rustc_errors::emitter::{DynEmitter, Emitter, HumanEmitter};
66
use rustc_errors::translation::Translate;
7-
use rustc_errors::{ColorConfig, DiagCtxt, Diagnostic, Level as DiagnosticLevel};
7+
use rustc_errors::{
8+
ColorConfig, DiagCtxt, Diagnostic, DiagnosticBuilder, Level as DiagnosticLevel,
9+
};
810
use rustc_session::parse::ParseSess as RawParseSess;
911
use rustc_span::{
1012
source_map::{FilePathMapping, SourceMap},
@@ -283,9 +285,9 @@ impl ParseSess {
283285

284286
// Methods that should be restricted within the parse module.
285287
impl ParseSess {
286-
pub(super) fn emit_diagnostics(&self, diagnostics: Vec<Diagnostic>) {
288+
pub(super) fn emit_diagnostics(&self, diagnostics: Vec<DiagnosticBuilder<'_>>) {
287289
for diagnostic in diagnostics {
288-
self.parse_sess.dcx.emit_diagnostic(diagnostic);
290+
diagnostic.emit();
289291
}
290292
}
291293

0 commit comments

Comments
 (0)