luaur-bytecode 0.1.1

Luau bytecode format and builder (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::records::call_inliner::CallInliner;

impl<'a> CallInliner<'a> {
    pub(crate) fn allocate_graph_entities_for_target(&mut self) {
        self.allocate_blocks();
        self.allocate_instructions();
        self.allocate_vm_consts();
        self.allocate_protos();
        self.allocate_up_values();
    }
}