Skip to main content

luaur_bytecode/macros/
vupval.rs

1#[allow(unused_macros)]
2macro_rules! VUPVAL {
3    ($v:expr, $func:expr) => {
4        LUAU_ASSERT!(($v as u32) < ($func.numupvalues as u32))
5    };
6}
7
8pub(crate) use VUPVAL;