@@ -330,6 +330,7 @@ impl Session {
330
330
self . diagnostic ( ) . struct_warn_with_expectation ( msg, id)
331
331
}
332
332
#[ rustc_lint_diagnostics]
333
+ #[ track_caller]
333
334
pub fn struct_span_allow < S : Into < MultiSpan > > (
334
335
& self ,
335
336
sp : S ,
@@ -338,10 +339,12 @@ impl Session {
338
339
self . diagnostic ( ) . struct_span_allow ( sp, msg)
339
340
}
340
341
#[ rustc_lint_diagnostics]
342
+ #[ track_caller]
341
343
pub fn struct_allow ( & self , msg : impl Into < DiagnosticMessage > ) -> DiagnosticBuilder < ' _ , ( ) > {
342
344
self . diagnostic ( ) . struct_allow ( msg)
343
345
}
344
346
#[ rustc_lint_diagnostics]
347
+ #[ track_caller]
345
348
pub fn struct_expect (
346
349
& self ,
347
350
msg : impl Into < DiagnosticMessage > ,
@@ -396,6 +399,7 @@ impl Session {
396
399
self . diagnostic ( ) . struct_warn_with_code ( msg, code)
397
400
}
398
401
#[ rustc_lint_diagnostics]
402
+ #[ track_caller]
399
403
pub fn struct_span_fatal < S : Into < MultiSpan > > (
400
404
& self ,
401
405
sp : S ,
@@ -418,6 +422,7 @@ impl Session {
418
422
}
419
423
420
424
#[ rustc_lint_diagnostics]
425
+ #[ track_caller]
421
426
pub fn span_fatal < S : Into < MultiSpan > > ( & self , sp : S , msg : impl Into < DiagnosticMessage > ) -> ! {
422
427
self . diagnostic ( ) . span_fatal ( sp, msg)
423
428
}
@@ -490,33 +495,40 @@ impl Session {
490
495
add_feature_diagnostics ( & mut err, & self . parse_sess , feature) ;
491
496
err
492
497
}
498
+ #[ track_caller]
493
499
pub fn emit_err < ' a > ( & ' a self , err : impl IntoDiagnostic < ' a > ) -> ErrorGuaranteed {
494
500
self . parse_sess . emit_err ( err)
495
501
}
502
+ #[ track_caller]
496
503
pub fn create_warning < ' a > (
497
504
& ' a self ,
498
505
err : impl IntoDiagnostic < ' a , ( ) > ,
499
506
) -> DiagnosticBuilder < ' a , ( ) > {
500
507
self . parse_sess . create_warning ( err)
501
508
}
509
+ #[ track_caller]
502
510
pub fn emit_warning < ' a > ( & ' a self , warning : impl IntoDiagnostic < ' a , ( ) > ) {
503
511
self . parse_sess . emit_warning ( warning)
504
512
}
513
+ #[ track_caller]
505
514
pub fn create_note < ' a > (
506
515
& ' a self ,
507
516
note : impl IntoDiagnostic < ' a , Noted > ,
508
517
) -> DiagnosticBuilder < ' a , Noted > {
509
518
self . parse_sess . create_note ( note)
510
519
}
520
+ #[ track_caller]
511
521
pub fn emit_note < ' a > ( & ' a self , note : impl IntoDiagnostic < ' a , Noted > ) -> Noted {
512
522
self . parse_sess . emit_note ( note)
513
523
}
524
+ #[ track_caller]
514
525
pub fn create_fatal < ' a > (
515
526
& ' a self ,
516
527
fatal : impl IntoDiagnostic < ' a , !> ,
517
528
) -> DiagnosticBuilder < ' a , !> {
518
529
self . parse_sess . create_fatal ( fatal)
519
530
}
531
+ #[ track_caller]
520
532
pub fn emit_fatal < ' a > ( & ' a self , fatal : impl IntoDiagnostic < ' a , !> ) -> ! {
521
533
self . parse_sess . emit_fatal ( fatal)
522
534
}
@@ -556,6 +568,7 @@ impl Session {
556
568
}
557
569
#[ allow( rustc:: untranslatable_diagnostic) ]
558
570
#[ allow( rustc:: diagnostic_outside_of_impl) ]
571
+ #[ track_caller]
559
572
pub fn span_warn < S : Into < MultiSpan > > ( & self , sp : S , msg : impl Into < DiagnosticMessage > ) {
560
573
self . diagnostic ( ) . span_warn ( sp, msg)
561
574
}
@@ -602,6 +615,8 @@ impl Session {
602
615
pub fn note_without_error ( & self , msg : impl Into < DiagnosticMessage > ) {
603
616
self . diagnostic ( ) . note_without_error ( msg)
604
617
}
618
+
619
+ #[ track_caller]
605
620
pub fn span_note_without_error < S : Into < MultiSpan > > (
606
621
& self ,
607
622
sp : S ,
0 commit comments