Skip to main content

luaur_code_gen/methods/
const_prop_state_invalidate_heap_table_data.rs

1use crate::records::const_prop_state::ConstPropState;
2
3impl ConstPropState {
4    pub fn invalidate_heap_table_data(&mut self) {
5        self.get_slot_node_cache.clear();
6        self.check_slot_match_cache.clear();
7        self.get_arr_addr_cache.clear();
8        self.check_array_size_cache.clear();
9        self.hash_value_cache.clear();
10        self.array_value_cache.clear();
11    }
12}