luaur-bytecode 0.1.4

Luau bytecode format and builder (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::enums::bc_op_kind::BcOpKind;
use crate::records::bc_op::BcOp;

impl BcOp {
    pub fn new() -> Self {
        Self {
            kind: BcOpKind::None,
            index: 0,
        }
    }
}

impl Default for BcOp {
    fn default() -> Self {
        Self::new()
    }
}