Skip to content

Commit b83e0d9

Browse files
committed
Expand #[expect] attributes into #[allow]
An `#[expect]` outer attribute must not be kept in the `#[automatically_derived]` code, as the expanded code will probably not meet the expectations. Transforming it into the equivalent `#[allow]` attribute is the safest way to ensure that expected attributes will not trigger a warning. Noticed through a bug report entered at the Clippy repository at <rust-lang/rust-clippy#14008>.
1 parent c35cc93 commit b83e0d9

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

crates/backend/src/codegen.rs

+20-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ use std::cell::RefCell;
1010
use std::collections::{HashMap, HashSet};
1111
use syn::parse_quote;
1212
use syn::spanned::Spanned;
13+
use syn::{Attribute, Meta, MetaList};
1314
use wasm_bindgen_shared as shared;
1415

1516
/// A trait for converting AST structs into Tokens and adding them to a TokenStream,
@@ -792,7 +793,24 @@ impl TryToTokens for ast::Export {
792793
<#inner_ret_ty as WasmDescribe>::describe();
793794
};
794795
let nargs = self.function.arguments.len() as u32;
795-
let attrs = &self.function.rust_attrs;
796+
let attrs = self
797+
.function
798+
.rust_attrs
799+
.iter()
800+
.map(|attr| match &attr.meta {
801+
Meta::List(list @ MetaList { path, .. }) if path.is_ident("expect") => {
802+
let list = MetaList {
803+
path: parse_quote!(allow),
804+
..list.clone()
805+
};
806+
Attribute {
807+
meta: Meta::List(list),
808+
..*attr
809+
}
810+
}
811+
_ => attr.clone(),
812+
})
813+
.collect::<Vec<_>>();
796814

797815
let mut checks = Vec::new();
798816
if self.start {
@@ -905,7 +923,7 @@ impl TryToTokens for ast::Export {
905923
#describe_args
906924
#describe_ret
907925
},
908-
attrs: attrs.clone(),
926+
attrs,
909927
wasm_bindgen: &self.wasm_bindgen,
910928
}
911929
.to_tokens(into);

0 commit comments

Comments
 (0)