File tree 1 file changed +5
-3
lines changed
compiler/rustc_errors/src
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -196,13 +196,15 @@ pub trait Emitter: Translate {
196
196
fn emit_diagnostic ( & mut self , diag : & Diagnostic ) ;
197
197
198
198
/// Emit a notification that an artifact has been output.
199
- /// This is currently only supported for the JSON format,
200
- /// other formats can, and will, simply ignore it.
199
+ /// Currently only supported for the JSON format.
201
200
fn emit_artifact_notification ( & mut self , _path : & Path , _artifact_type : & str ) { }
202
201
202
+ /// Emit a report about future breakage.
203
+ /// Currently only supported for the JSON format.
203
204
fn emit_future_breakage_report ( & mut self , _diags : Vec < Diagnostic > ) { }
204
205
205
- /// Emit list of unused externs
206
+ /// Emit list of unused externs.
207
+ /// Currently only supported for the JSON format.
206
208
fn emit_unused_externs (
207
209
& mut self ,
208
210
_lint_level : rustc_lint_defs:: Level ,
You can’t perform that action at this time.
0 commit comments