Skip to content

Commit be5337c

Browse files
committedJun 21, 2022
Migrate builtin-macros-expected-one-cfg-pattern to SessionDiagnostic
1 parent 6264ffb commit be5337c

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed
 

‎compiler/rustc_builtin_macros/src/cfg.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ struct RequiresCfgPattern {
4343
span: Span,
4444
}
4545

46+
#[derive(SessionDiagnostic)]
47+
#[error(slug = "builtin-macros-expected-one-cfg-pattern")]
48+
struct OneCfgPattern {
49+
#[primary_span]
50+
span: Span,
51+
}
52+
4653
fn parse_cfg<'a>(cx: &mut ExtCtxt<'a>, span: Span, tts: TokenStream) -> PResult<'a, ast::MetaItem> {
4754
let mut p = cx.new_parser_from_tts(tts);
4855

@@ -55,7 +62,7 @@ fn parse_cfg<'a>(cx: &mut ExtCtxt<'a>, span: Span, tts: TokenStream) -> PResult<
5562
let _ = p.eat(&token::Comma);
5663

5764
if !p.eat(&token::Eof) {
58-
return Err(cx.struct_span_err(span, "expected 1 cfg-pattern"));
65+
return Err(cx.create_err(OneCfgPattern { span }));
5966
}
6067

6168
Ok(cfg)
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
builtin-macros-requires-cfg-pattern =
22
macro requires a cfg-pattern as an argument
33
.label = cfg-pattern required
4+
5+
builtin-macros-expected-one-cfg-pattern = expected 1 cfg-pattern

0 commit comments

Comments
 (0)
Please sign in to comment.