luaur_analysis/functions/make_table_shared_normalize_alt_b.rs
1use crate::functions::make_table_shared_normalize::make_table_shared_type_id_dense_hash_set_type_id;
2use crate::type_aliases::type_id::TypeId;
3use luaur_common::records::dense_hash_set::DenseHashSet;
4
5pub fn make_table_shared_type_id(ty: TypeId) {
6 let mut seen = DenseHashSet::new(core::ptr::null());
7 make_table_shared_type_id_dense_hash_set_type_id(ty, &mut seen);
8}