1#[macro_export] 2#[allow(non_snake_case)] 3macro_rules! api_check { 4 ($l:expr, $e:expr) => { 5 luaur_common::LUAU_ASSERT!($e); 6 }; 7} 8 9pub use api_check;