Skip to content

Commit 8abbcad

Browse files
committedJun 13, 2024
format #![feature(unsafe_attributes)]
Our diff-check job was failing in part due to removing `unsafe` from any `#[unsafe(attributes)]`. To prevent that I added a quick implementation for this.
1 parent 8e80f8a commit 8abbcad

File tree

2 files changed

+46
-4
lines changed

2 files changed

+46
-4
lines changed
 

‎src/attr.rs

+12-4
Original file line numberDiff line numberDiff line change
@@ -353,10 +353,18 @@ impl Rewrite for ast::Attribute {
353353

354354
// 1 = `[`
355355
let shape = shape.offset_left(prefix.len() + 1)?;
356-
Some(
357-
meta.rewrite(context, shape)
358-
.map_or_else(|| snippet.to_owned(), |rw| format!("{}[{}]", prefix, rw)),
359-
)
356+
Some(meta.rewrite(context, shape).map_or_else(
357+
|| snippet.to_owned(),
358+
|rw| match &self.kind {
359+
ast::AttrKind::Normal(normal_attr) => match normal_attr.item.unsafety {
360+
// For #![feature(unsafe_attributes)]
361+
// See https://github.com/rust-lang/rust/issues/123757
362+
ast::Safety::Unsafe(_) => format!("{}[unsafe({})]", prefix, rw),
363+
_ => format!("{}[{}]", prefix, rw),
364+
},
365+
_ => format!("{}[{}]", prefix, rw),
366+
},
367+
))
360368
} else {
361369
Some(snippet.to_owned())
362370
}

‎tests/target/unsafe_attributes.rs

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
#![feature(unsafe_attributes)]
2+
// https://github.com/rust-lang/rust/issues/123757
3+
//
4+
#![simple_ident]
5+
#![simple::path]
6+
#![simple_ident_expr = ""]
7+
#![simple::path::Expr = ""]
8+
#![simple_ident_tt(a b c)]
9+
#![simple_ident_tt[a b c]]
10+
#![simple_ident_tt{a b c}]
11+
#![simple::path::tt(a b c)]
12+
#![simple::path::tt[a b c]]
13+
#![simple::path::tt{a b c}]
14+
#![unsafe(simple_ident)]
15+
#![unsafe(simple::path)]
16+
#![unsafe(simple_ident_expr = "")]
17+
#![unsafe(simple::path::Expr = "")]
18+
#![unsafe(simple_ident_tt(a b c))]
19+
#![unsafe(simple_ident_tt[a b c])]
20+
#![unsafe(simple_ident_tt{a b c})]
21+
#![unsafe(simple::path::tt(a b c))]
22+
#![unsafe(simple::path::tt[a b c])]
23+
#![unsafe(simple::path::tt{a b c})]
24+
// I don't think `safe` attributes are a thing, but adding these formatting cases here just in case
25+
#![safe(simple_ident)]
26+
#![safe(simple::path)]
27+
#![safe(simple_ident_expr = "")]
28+
#![safe(simple::path::Expr = "")]
29+
#![safe(simple_ident_tt(a b c))]
30+
#![safe(simple_ident_tt[a b c])]
31+
#![safe(simple_ident_tt{a b c})]
32+
#![safe(simple::path::tt(a b c))]
33+
#![safe(simple::path::tt[a b c])]
34+
#![safe(simple::path::tt{a b c})]

0 commit comments

Comments
 (0)