| use rustc_macros::Diagnostic; |
| use rustc_span::symbol::MacroRulesNormalizedIdent; |
| use rustc_span::Span; |
| |
| #[derive(Diagnostic)] |
| #[diag(expand_expr_repeat_no_syntax_vars)] |
| pub(crate) struct NoSyntaxVarsExprRepeat { |
| #[primary_span] |
| pub span: Span, |
| } |
| |
| #[derive(Diagnostic)] |
| #[diag(expand_must_repeat_once)] |
| pub(crate) struct MustRepeatOnce { |
| #[primary_span] |
| pub span: Span, |
| } |
| |
| #[derive(Diagnostic)] |
| #[diag(expand_count_repetition_misplaced)] |
| pub(crate) struct CountRepetitionMisplaced { |
| #[primary_span] |
| pub span: Span, |
| } |
| |
| #[derive(Diagnostic)] |
| #[diag(expand_meta_var_expr_unrecognized_var)] |
| pub(crate) struct MetaVarExprUnrecognizedVar { |
| #[primary_span] |
| pub span: Span, |
| pub key: MacroRulesNormalizedIdent, |
| } |
| |
| #[derive(Diagnostic)] |
| #[diag(expand_var_still_repeating)] |
| pub(crate) struct VarStillRepeating { |
| #[primary_span] |
| pub span: Span, |
| pub ident: MacroRulesNormalizedIdent, |
| } |
| |
| #[derive(Diagnostic)] |
| #[diag(expand_meta_var_dif_seq_matchers)] |
| pub(crate) struct MetaVarsDifSeqMatchers { |
| #[primary_span] |
| pub span: Span, |
| pub msg: String, |
| } |