luaur_analysis/methods/
generic_counter_visit_generalization_alt_c.rs1use crate::records::generic_counter::GenericCounter;
2use crate::records::table_type::TableType;
3use crate::type_aliases::type_id::TypeId;
4
5impl GenericCounter {
6 pub fn visit_type_id_table_type(&mut self, _ty: TypeId, _tt: &TableType) -> bool {
7 self.check_limits();
8 false
9 }
10}