Add missing case to codegen handler

This commit is contained in:
Micah 2023-10-18 16:27:16 -07:00
parent b8fa19b52d
commit 98dc6ed4d4
No known key found for this signature in database

View file

@ -504,6 +504,7 @@ static void handleBuiltinEffects(ConstPropState& state, LuauBuiltinFunction bfid
case LBF_GETMETATABLE:
case LBF_TONUMBER:
case LBF_TOSTRING:
case LBF_BIT32_BYTESWAP:
break;
case LBF_TABLE_INSERT:
state.invalidateHeap();