luaur-code-gen 0.1.3

Native (A64/X64) code generation for Luau (Rust).
Documentation
1
2
3
4
5
6
7
8
use crate::records::ir_function::IrFunction;
use crate::records::store_location_hint::StoreLocationHint;

impl IrFunction {
    pub fn find_store_location_hint(&self, inst_idx: u32) -> Option<&StoreLocationHint> {
        self.store_location_hints.find(&inst_idx)
    }
}