luaur-vm 0.1.1

The Luau register virtual machine and standard library (Rust).
Documentation
1
2
3
4
5
use luaur_common::enums::luau_opcode::LuauOpcode;

pub fn luau_skipstep(op: u8) -> bool {
    op == LuauOpcode::LOP_PREPVARARGS as u8 || op == LuauOpcode::LOP_BREAK as u8
}