luaur-compiler 0.1.3

Luau source-to-bytecode compiler (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
use luaur_ast::records::ast_expr_function::AstExprFunction;

#[derive(Debug, Clone)]
pub struct InlineFrame {
    pub(crate) func: *mut AstExprFunction,
    pub(crate) local_offset: usize,
    pub(crate) target: u8,
    pub(crate) target_count: u8,
    pub(crate) return_jumps: alloc::vec::Vec<usize>,
}