Skip to main content

luaur_bytecode/methods/
call_inliner_allocate_graph_entities_for_target.rs

1use crate::records::call_inliner::CallInliner;
2
3impl<'a> CallInliner<'a> {
4    pub(crate) fn allocate_graph_entities_for_target(&mut self) {
5        self.allocate_blocks();
6        self.allocate_instructions();
7        self.allocate_vm_consts();
8        self.allocate_protos();
9        self.allocate_up_values();
10    }
11}