luaur-code-gen 0.1.3

Native (A64/X64) code generation for Luau (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::records::const_prop_state::ConstPropState;

impl ConstPropState {
    pub fn invalidate_heap_table_data(&mut self) {
        self.get_slot_node_cache.clear();
        self.check_slot_match_cache.clear();
        self.get_arr_addr_cache.clear();
        self.check_array_size_cache.clear();
        self.hash_value_cache.clear();
        self.array_value_cache.clear();
    }
}