Skip to main content

luaur_analysis/methods/
generic_counter_visit_generalization_alt_d.rs

1use crate::records::extern_type::ExternType;
2use crate::records::generic_counter::GenericCounter;
3use crate::type_aliases::type_id::TypeId;
4
5impl GenericCounter {
6    pub fn visit_type_id_extern_type(&mut self, _ty: TypeId, _et: &ExternType) -> bool {
7        false
8    }
9}