Skip to main content

luaur_code_gen/methods/
const_prop_state_invalidate_heap_buffer_data.rs

1use crate::records::const_prop_state::ConstPropState;
2
3impl ConstPropState {
4    pub fn invalidate_heap_buffer_data(&mut self) {
5        self.check_buffer_len_cache.clear();
6        self.buffer_load_store_info.clear();
7    }
8}