diff --git a/Analysis/src/ConstraintGenerator.cpp b/Analysis/src/ConstraintGenerator.cpp index c0fee4a2..af532735 100644 --- a/Analysis/src/ConstraintGenerator.cpp +++ b/Analysis/src/ConstraintGenerator.cpp @@ -32,6 +32,7 @@ LUAU_FASTINT(LuauCheckRecursionLimit) LUAU_FASTFLAG(DebugLuauLogSolverToJson) LUAU_FASTFLAG(DebugLuauMagicTypes) LUAU_FASTFLAG(LuauPreserveUnionIntersectionNodeForLeadingTokenSingleType) +LUAU_FASTFLAG(LuauPropagateExpectedTypesForCalls) LUAU_FASTFLAGVARIABLE(LuauNewSolverPrePopulateClasses) LUAU_FASTFLAGVARIABLE(LuauNewSolverPopulateTableLocations) @@ -2031,8 +2032,8 @@ InferencePack ConstraintGenerator::checkPack(const ScopePtr& scope, AstExprCall* } else if (i < exprArgs.size() - 1 || !(arg->is() || arg->is())) { - std::optional expectedType; - if (i < expectedTypesForCall.size()) + std::optional expectedType = std::nullopt; + if (FFlag::LuauPropagateExpectedTypesForCalls && i < expectedTypesForCall.size()) { expectedType = expectedTypesForCall[i]; } @@ -2043,7 +2044,7 @@ InferencePack ConstraintGenerator::checkPack(const ScopePtr& scope, AstExprCall* else { std::vector> expectedTypes = {}; - if (i < expectedTypesForCall.size()) + if (FFlag::LuauPropagateExpectedTypesForCalls && i < expectedTypesForCall.size()) { expectedTypes.insert(expectedTypes.end(), expectedTypesForCall.begin() + i, expectedTypesForCall.end()); }