Skip to content

Commit 7738d69

Browse files
committed
Rename ParseSess::span_diagnostic as ParseSess::dcx.
1 parent c7992af commit 7738d69

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

src/parse/macros/cfg_if.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ fn parse_cfg_if_inner<'a>(
6767
Ok(None) => continue,
6868
Err(err) => {
6969
err.cancel();
70-
parser.sess.span_diagnostic.reset_err_count();
70+
parser.sess.dcx.reset_err_count();
7171
return Err(
7272
"Expected item inside cfg_if block, but failed to parse it as an item",
7373
);

src/parse/macros/lazy_static.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ pub(crate) fn parse_lazy_static(
1616
($method:ident $(,)* $($arg:expr),* $(,)*) => {
1717
match parser.$method($($arg,)*) {
1818
Ok(val) => {
19-
if parser.sess.span_diagnostic.has_errors().is_some() {
20-
parser.sess.span_diagnostic.reset_err_count();
19+
if parser.sess.dcx.has_errors().is_some() {
20+
parser.sess.dcx.reset_err_count();
2121
return None;
2222
} else {
2323
val
2424
}
2525
}
2626
Err(err) => {
2727
err.cancel();
28-
parser.sess.span_diagnostic.reset_err_count();
28+
parser.sess.dcx.reset_err_count();
2929
return None;
3030
}
3131
}

src/parse/macros/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ fn parse_macro_arg<'a, 'b: 'a>(parser: &'a mut Parser<'b>) -> Option<MacroArg> {
2828
let mut cloned_parser = (*parser).clone();
2929
match $parser(&mut cloned_parser) {
3030
Ok(x) => {
31-
if parser.sess.span_diagnostic.has_errors().is_some() {
32-
parser.sess.span_diagnostic.reset_err_count();
31+
if parser.sess.dcx.has_errors().is_some() {
32+
parser.sess.dcx.reset_err_count();
3333
} else {
3434
// Parsing succeeded.
3535
*parser = cloned_parser;
@@ -38,7 +38,7 @@ fn parse_macro_arg<'a, 'b: 'a>(parser: &'a mut Parser<'b>) -> Option<MacroArg> {
3838
}
3939
Err(e) => {
4040
e.cancel();
41-
parser.sess.span_diagnostic.reset_err_count();
41+
parser.sess.dcx.reset_err_count();
4242
}
4343
}
4444
};

src/parse/session.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ impl ParseSess {
218218
}
219219

220220
pub(crate) fn set_silent_emitter(&mut self) {
221-
self.parse_sess.span_diagnostic = DiagCtxt::with_emitter(silent_emitter());
221+
self.parse_sess.dcx = DiagCtxt::with_emitter(silent_emitter());
222222
}
223223

224224
pub(crate) fn span_to_filename(&self, span: Span) -> FileName {
@@ -285,7 +285,7 @@ impl ParseSess {
285285
impl ParseSess {
286286
pub(super) fn emit_diagnostics(&self, diagnostics: Vec<Diagnostic>) {
287287
for diagnostic in diagnostics {
288-
self.parse_sess.span_diagnostic.emit_diagnostic(diagnostic);
288+
self.parse_sess.dcx.emit_diagnostic(diagnostic);
289289
}
290290
}
291291

@@ -294,11 +294,11 @@ impl ParseSess {
294294
}
295295

296296
pub(super) fn has_errors(&self) -> bool {
297-
self.parse_sess.span_diagnostic.has_errors().is_some()
297+
self.parse_sess.dcx.has_errors().is_some()
298298
}
299299

300300
pub(super) fn reset_errors(&self) {
301-
self.parse_sess.span_diagnostic.reset_err_count();
301+
self.parse_sess.dcx.reset_err_count();
302302
}
303303
}
304304

0 commit comments

Comments
 (0)