1#[allow(non_snake_case)] 2#[macro_export] 3macro_rules! LUAU_FORCEINLINE { 4 ($item:item) => { 5 #[inline(always)] 6 $item 7 }; 8} 9 10pub use LUAU_FORCEINLINE;