Skip to main content

luaur_analysis/methods/
block_get_instructions.rs

1use crate::records::block::Block;
2use crate::type_aliases::instr_id::InstrId;
3use alloc::vec::Vec;
4
5pub fn block_get_instructions(block: &Block) -> &Vec<InstrId> {
6    &block.instructions
7}