mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 18:30:54 +01:00
fflag gate
This commit is contained in:
parent
414d6a4b97
commit
54e190af5c
2 changed files with 21 additions and 5 deletions
|
@ -34,6 +34,7 @@ LUAU_DYNAMIC_FASTINT(LuauTypeSolverRelease)
|
||||||
LUAU_FASTFLAG(LuauTypestateBuiltins2)
|
LUAU_FASTFLAG(LuauTypestateBuiltins2)
|
||||||
|
|
||||||
LUAU_FASTFLAGVARIABLE(LuauNewSolverVisitErrorExprLvalues)
|
LUAU_FASTFLAGVARIABLE(LuauNewSolverVisitErrorExprLvalues)
|
||||||
|
LUAU_FASTFLAGVARIABLE(LuauNewSolverPrePopulateClasses)
|
||||||
|
|
||||||
namespace Luau
|
namespace Luau
|
||||||
{
|
{
|
||||||
|
@ -753,6 +754,9 @@ void ConstraintGenerator::checkAliases(const ScopePtr& scope, AstStatBlock* bloc
|
||||||
}
|
}
|
||||||
else if (auto classDeclaration = stat->as<AstStatDeclareClass>())
|
else if (auto classDeclaration = stat->as<AstStatDeclareClass>())
|
||||||
{
|
{
|
||||||
|
if (!FFlag::LuauNewSolverPrePopulateClasses)
|
||||||
|
continue;
|
||||||
|
|
||||||
if (scope->exportedTypeBindings.count(classDeclaration->name.value))
|
if (scope->exportedTypeBindings.count(classDeclaration->name.value))
|
||||||
{
|
{
|
||||||
auto it = classDefinitionLocations.find(classDeclaration->name.value);
|
auto it = classDefinitionLocations.find(classDeclaration->name.value);
|
||||||
|
@ -1671,7 +1675,7 @@ ControlFlow ConstraintGenerator::visit(const ScopePtr& scope, AstStatDeclareClas
|
||||||
{
|
{
|
||||||
// If a class with the same name was already defined, we skip over
|
// If a class with the same name was already defined, we skip over
|
||||||
auto bindingIt = scope->exportedTypeBindings.find(declaredClass->name.value);
|
auto bindingIt = scope->exportedTypeBindings.find(declaredClass->name.value);
|
||||||
if (bindingIt == scope->exportedTypeBindings.end())
|
if (FFlag::LuauNewSolverPrePopulateClasses && bindingIt == scope->exportedTypeBindings.end())
|
||||||
return ControlFlow::None;
|
return ControlFlow::None;
|
||||||
|
|
||||||
std::optional<TypeId> superTy = std::make_optional(builtinTypes->classType);
|
std::optional<TypeId> superTy = std::make_optional(builtinTypes->classType);
|
||||||
|
@ -1688,9 +1692,12 @@ ControlFlow ConstraintGenerator::visit(const ScopePtr& scope, AstStatDeclareClas
|
||||||
|
|
||||||
// We don't have generic classes, so this assertion _should_ never be hit.
|
// We don't have generic classes, so this assertion _should_ never be hit.
|
||||||
LUAU_ASSERT(lookupType->typeParams.size() == 0 && lookupType->typePackParams.size() == 0);
|
LUAU_ASSERT(lookupType->typeParams.size() == 0 && lookupType->typePackParams.size() == 0);
|
||||||
superTy = follow(lookupType->type);
|
if (FFlag::LuauNewSolverPrePopulateClasses)
|
||||||
|
superTy = follow(lookupType->type);
|
||||||
|
else
|
||||||
|
superTy = lookupType->type;
|
||||||
|
|
||||||
if (!get<ClassType>(*superTy))
|
if (!get<ClassType>(follow(*superTy)))
|
||||||
{
|
{
|
||||||
reportError(
|
reportError(
|
||||||
declaredClass->location,
|
declaredClass->location,
|
||||||
|
@ -1711,8 +1718,14 @@ ControlFlow ConstraintGenerator::visit(const ScopePtr& scope, AstStatDeclareClas
|
||||||
|
|
||||||
ctv->metatable = metaTy;
|
ctv->metatable = metaTy;
|
||||||
|
|
||||||
TypeId classBindTy = bindingIt->second.type;
|
|
||||||
emplaceType<BoundType>(asMutable(classBindTy), classTy);
|
if (FFlag::LuauNewSolverPrePopulateClasses)
|
||||||
|
{
|
||||||
|
TypeId classBindTy = bindingIt->second.type;
|
||||||
|
emplaceType<BoundType>(asMutable(classBindTy), classTy);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
scope->exportedTypeBindings[className] = TypeFun{{}, classTy};
|
||||||
|
|
||||||
if (declaredClass->indexer)
|
if (declaredClass->indexer)
|
||||||
{
|
{
|
||||||
|
|
|
@ -9,6 +9,8 @@
|
||||||
|
|
||||||
using namespace Luau;
|
using namespace Luau;
|
||||||
|
|
||||||
|
LUAU_FASTFLAG(LuauNewSolverPrePopulateClasses)
|
||||||
|
|
||||||
TEST_SUITE_BEGIN("DefinitionTests");
|
TEST_SUITE_BEGIN("DefinitionTests");
|
||||||
|
|
||||||
TEST_CASE_FIXTURE(Fixture, "definition_file_simple")
|
TEST_CASE_FIXTURE(Fixture, "definition_file_simple")
|
||||||
|
@ -492,6 +494,7 @@ TEST_CASE_FIXTURE(Fixture, "class_definition_indexer")
|
||||||
|
|
||||||
TEST_CASE_FIXTURE(Fixture, "class_definitions_reference_other_classes")
|
TEST_CASE_FIXTURE(Fixture, "class_definitions_reference_other_classes")
|
||||||
{
|
{
|
||||||
|
ScopedFastFlag _{FFlag::LuauNewSolverPrePopulateClasses, true};
|
||||||
loadDefinition(R"(
|
loadDefinition(R"(
|
||||||
declare class Channel
|
declare class Channel
|
||||||
Messages: { Message }
|
Messages: { Message }
|
||||||
|
|
Loading…
Add table
Reference in a new issue