Error on unsafe on non-unsafe attribute

This commit is contained in:
carbotaniuman
2024-05-15 18:52:08 -05:00
parent 48851d9adb
commit 230b58febf
9 changed files with 75 additions and 4 deletions

View File

@@ -1146,6 +1146,10 @@ pub fn is_valid_for_get_attr(name: Symbol) -> bool {
})
}
pub fn is_unsafe_attr(name: Symbol) -> bool {
BUILTIN_ATTRIBUTE_MAP.get(&name).is_some_and(|attr| attr.safety == AttributeSafety::Unsafe)
}
pub static BUILTIN_ATTRIBUTE_MAP: LazyLock<FxHashMap<Symbol, &BuiltinAttribute>> =
LazyLock::new(|| {
let mut map = FxHashMap::default();