Skip to content

Commit 7045cad

Browse files
committed
Split Handler::emit_diagnostic in two.
Currently, `emit_diagnostic` takes `&mut self`. This commit changes it so `emit_diagnostic` takes `self` and the new `emit_diagnostic_without_consuming` function takes `&mut self`. I find the distinction useful. The former case is much more common, and avoids a bunch of `mut` and `&mut` occurrences. We can also restrict the latter with `pub(crate)` which is nice.
1 parent 948c904 commit 7045cad

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/parse/session.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -284,10 +284,8 @@ impl ParseSess {
284284
// Methods that should be restricted within the parse module.
285285
impl ParseSess {
286286
pub(super) fn emit_diagnostics(&self, diagnostics: Vec<Diagnostic>) {
287-
for mut diagnostic in diagnostics {
288-
self.parse_sess
289-
.span_diagnostic
290-
.emit_diagnostic(&mut diagnostic);
287+
for diagnostic in diagnostics {
288+
self.parse_sess.span_diagnostic.emit_diagnostic(diagnostic);
291289
}
292290
}
293291

0 commit comments

Comments
 (0)