luaur_analysis/methods/
anyification_ignore_children_anyification_alt_b.rs1use crate::records::anyification::Anyification;
2use crate::type_aliases::type_pack_id::TypePackId;
3
4impl Anyification {
5 pub fn ignore_children_type_pack_id(&mut self, ty: TypePackId) -> bool {
6 unsafe { (*ty).persistent }
7 }
8}