We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 978a216 commit efd564cCopy full SHA for efd564c
tests/Compiler.test.cpp
@@ -2671,6 +2671,9 @@ TEST_CASE("RecursionParse")
2671
ScopedFastInt flag(FInt::LuauRecursionLimit, 200);
2672
#elif defined(_NOOPT) || defined(_DEBUG)
2673
ScopedFastInt flag(FInt::LuauRecursionLimit, 300);
2674
+ // ServerLua: We do RelWithDebinfo MSVC builds and it does not like large stacks.
2675
+#elif defined(_MSC_VER)
2676
+ ScopedFastInt flag(FInt::LuauRecursionLimit, 300);
2677
#endif
2678
2679
Luau::BytecodeBuilder bcb;
0 commit comments