Skip to main content

luaur_compiler/records/
inline_frame.rs

1use luaur_ast::records::ast_expr_function::AstExprFunction;
2
3#[derive(Debug, Clone)]
4pub struct InlineFrame {
5    pub(crate) func: *mut AstExprFunction,
6    pub(crate) local_offset: usize,
7    pub(crate) target: u8,
8    pub(crate) target_count: u8,
9    pub(crate) return_jumps: alloc::vec::Vec<usize>,
10}