Skip to main content

luaur_analysis/methods/
instantiation_clean_instantiation_alt_b.rs

1use crate::records::instantiation::Instantiation;
2use crate::type_aliases::type_pack_id::TypePackId;
3use luaur_common::macros::luau_assert::LUAU_ASSERT;
4
5impl Instantiation {
6    pub fn clean_type_pack_id(&mut self, tp: TypePackId) -> TypePackId {
7        LUAU_ASSERT!(false);
8        tp
9    }
10}