@@ -565,7 +565,7 @@ impl SuggestionKind {
565
565
566
566
/// Types of subdiagnostics that can be created using attributes
567
567
#[ derive( Clone ) ]
568
- pub ( super ) enum SubdiagnosticKind {
568
+ pub ( super ) enum SubdiagKind {
569
569
/// `#[label(...)]`
570
570
Label ,
571
571
/// `#[note(...)]`
@@ -593,15 +593,15 @@ pub(super) enum SubdiagnosticKind {
593
593
}
594
594
595
595
pub ( super ) struct SubdiagnosticVariant {
596
- pub ( super ) kind : SubdiagnosticKind ,
596
+ pub ( super ) kind : SubdiagKind ,
597
597
pub ( super ) slug : Option < Path > ,
598
598
pub ( super ) no_span : bool ,
599
599
}
600
600
601
601
impl SubdiagnosticVariant {
602
602
/// Constructs a `SubdiagnosticVariant` from a field or type attribute such as `#[note]`,
603
603
/// `#[error(parser::add_paren, no_span)]` or `#[suggestion(code = "...")]`. Returns the
604
- /// `SubdiagnosticKind ` and the diagnostic slug, if specified.
604
+ /// `SubdiagKind ` and the diagnostic slug, if specified.
605
605
pub ( super ) fn from_attr (
606
606
attr : & Attribute ,
607
607
fields : & impl HasFieldMap ,
@@ -617,10 +617,10 @@ impl SubdiagnosticVariant {
617
617
let name = name. as_str ( ) ;
618
618
619
619
let mut kind = match name {
620
- "label" => SubdiagnosticKind :: Label ,
621
- "note" => SubdiagnosticKind :: Note ,
622
- "help" => SubdiagnosticKind :: Help ,
623
- "warning" => SubdiagnosticKind :: Warn ,
620
+ "label" => SubdiagKind :: Label ,
621
+ "note" => SubdiagKind :: Note ,
622
+ "help" => SubdiagKind :: Help ,
623
+ "warning" => SubdiagKind :: Warn ,
624
624
_ => {
625
625
// Recover old `#[(multipart_)suggestion_*]` syntaxes
626
626
// FIXME(#100717): remove
@@ -635,7 +635,7 @@ impl SubdiagnosticVariant {
635
635
. emit ( ) ;
636
636
}
637
637
638
- SubdiagnosticKind :: Suggestion {
638
+ SubdiagKind :: Suggestion {
639
639
suggestion_kind : SuggestionKind :: Normal ,
640
640
applicability : None ,
641
641
code_field : new_code_ident ( ) ,
@@ -652,7 +652,7 @@ impl SubdiagnosticVariant {
652
652
. emit ( ) ;
653
653
}
654
654
655
- SubdiagnosticKind :: MultipartSuggestion {
655
+ SubdiagKind :: MultipartSuggestion {
656
656
suggestion_kind : SuggestionKind :: Normal ,
657
657
applicability : None ,
658
658
}
@@ -675,14 +675,14 @@ impl SubdiagnosticVariant {
675
675
// Only allow this if there are no mandatory properties, such as `code = "..."` in
676
676
// `#[suggestion(...)]`
677
677
match kind {
678
- SubdiagnosticKind :: Label
679
- | SubdiagnosticKind :: Note
680
- | SubdiagnosticKind :: Help
681
- | SubdiagnosticKind :: Warn
682
- | SubdiagnosticKind :: MultipartSuggestion { .. } => {
678
+ SubdiagKind :: Label
679
+ | SubdiagKind :: Note
680
+ | SubdiagKind :: Help
681
+ | SubdiagKind :: Warn
682
+ | SubdiagKind :: MultipartSuggestion { .. } => {
683
683
return Ok ( Some ( SubdiagnosticVariant { kind, slug : None , no_span : false } ) ) ;
684
684
}
685
- SubdiagnosticKind :: Suggestion { .. } => {
685
+ SubdiagKind :: Suggestion { .. } => {
686
686
throw_span_err ! ( span, "suggestion without `code = \" ...\" `" )
687
687
}
688
688
}
@@ -735,7 +735,7 @@ impl SubdiagnosticVariant {
735
735
let input = nested. input ;
736
736
737
737
match ( nested_name, & mut kind) {
738
- ( "code" , SubdiagnosticKind :: Suggestion { code_field, .. } ) => {
738
+ ( "code" , SubdiagKind :: Suggestion { code_field, .. } ) => {
739
739
let code_init = build_suggestion_code (
740
740
code_field,
741
741
nested,
@@ -746,8 +746,8 @@ impl SubdiagnosticVariant {
746
746
}
747
747
(
748
748
"applicability" ,
749
- SubdiagnosticKind :: Suggestion { ref mut applicability, .. }
750
- | SubdiagnosticKind :: MultipartSuggestion { ref mut applicability, .. } ,
749
+ SubdiagKind :: Suggestion { ref mut applicability, .. }
750
+ | SubdiagKind :: MultipartSuggestion { ref mut applicability, .. } ,
751
751
) => {
752
752
let value = get_string ! ( ) ;
753
753
let value = Applicability :: from_str ( & value. value ( ) ) . unwrap_or_else ( |( ) | {
@@ -759,8 +759,8 @@ impl SubdiagnosticVariant {
759
759
}
760
760
(
761
761
"style" ,
762
- SubdiagnosticKind :: Suggestion { .. }
763
- | SubdiagnosticKind :: MultipartSuggestion { .. } ,
762
+ SubdiagKind :: Suggestion { .. }
763
+ | SubdiagKind :: MultipartSuggestion { .. } ,
764
764
) => {
765
765
let value = get_string ! ( ) ;
766
766
@@ -776,15 +776,15 @@ impl SubdiagnosticVariant {
776
776
}
777
777
778
778
// Invalid nested attribute
779
- ( _, SubdiagnosticKind :: Suggestion { .. } ) => {
779
+ ( _, SubdiagKind :: Suggestion { .. } ) => {
780
780
span_err ( path_span, "invalid nested attribute" )
781
781
. help (
782
782
"only `no_span`, `style`, `code` and `applicability` are valid nested attributes" ,
783
783
)
784
784
. emit ( ) ;
785
785
has_errors = true ;
786
786
}
787
- ( _, SubdiagnosticKind :: MultipartSuggestion { .. } ) => {
787
+ ( _, SubdiagKind :: MultipartSuggestion { .. } ) => {
788
788
span_err ( path_span, "invalid nested attribute" )
789
789
. help ( "only `no_span`, `style` and `applicability` are valid nested attributes" )
790
790
. emit ( ) ;
@@ -805,7 +805,7 @@ impl SubdiagnosticVariant {
805
805
} ) ?;
806
806
807
807
match kind {
808
- SubdiagnosticKind :: Suggestion {
808
+ SubdiagKind :: Suggestion {
809
809
ref code_field,
810
810
ref mut code_init,
811
811
suggestion_kind : ref mut kind_field,
@@ -822,32 +822,27 @@ impl SubdiagnosticVariant {
822
822
quote ! { let #code_field = std:: iter:: empty( ) ; }
823
823
} ;
824
824
}
825
- SubdiagnosticKind :: MultipartSuggestion {
826
- suggestion_kind : ref mut kind_field, ..
827
- } => {
825
+ SubdiagKind :: MultipartSuggestion { suggestion_kind : ref mut kind_field, .. } => {
828
826
if let Some ( kind) = suggestion_kind. value ( ) {
829
827
* kind_field = kind;
830
828
}
831
829
}
832
- SubdiagnosticKind :: Label
833
- | SubdiagnosticKind :: Note
834
- | SubdiagnosticKind :: Help
835
- | SubdiagnosticKind :: Warn => { }
830
+ SubdiagKind :: Label | SubdiagKind :: Note | SubdiagKind :: Help | SubdiagKind :: Warn => { }
836
831
}
837
832
838
833
Ok ( Some ( SubdiagnosticVariant { kind, slug, no_span } ) )
839
834
}
840
835
}
841
836
842
- impl quote:: IdentFragment for SubdiagnosticKind {
837
+ impl quote:: IdentFragment for SubdiagKind {
843
838
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
844
839
match self {
845
- SubdiagnosticKind :: Label => write ! ( f, "label" ) ,
846
- SubdiagnosticKind :: Note => write ! ( f, "note" ) ,
847
- SubdiagnosticKind :: Help => write ! ( f, "help" ) ,
848
- SubdiagnosticKind :: Warn => write ! ( f, "warn" ) ,
849
- SubdiagnosticKind :: Suggestion { .. } => write ! ( f, "suggestions_with_style" ) ,
850
- SubdiagnosticKind :: MultipartSuggestion { .. } => {
840
+ SubdiagKind :: Label => write ! ( f, "label" ) ,
841
+ SubdiagKind :: Note => write ! ( f, "note" ) ,
842
+ SubdiagKind :: Help => write ! ( f, "help" ) ,
843
+ SubdiagKind :: Warn => write ! ( f, "warn" ) ,
844
+ SubdiagKind :: Suggestion { .. } => write ! ( f, "suggestions_with_style" ) ,
845
+ SubdiagKind :: MultipartSuggestion { .. } => {
851
846
write ! ( f, "multipart_suggestion_with_style" )
852
847
}
853
848
}
0 commit comments