2023-08-05 01:01:35 +08:00
|
|
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
|
|
|
|
#include "Luau/Scope.h"
|
|
|
|
#include "Luau/ToString.h"
|
|
|
|
#include "Luau/TypeArena.h"
|
|
|
|
#include "Luau/Unifier2.h"
|
|
|
|
#include "Luau/Error.h"
|
|
|
|
|
|
|
|
#include "ScopedFlags.h"
|
|
|
|
|
|
|
|
#include "doctest.h"
|
|
|
|
|
|
|
|
using namespace Luau;
|
|
|
|
|
2024-08-31 03:28:44 +08:00
|
|
|
LUAU_FASTFLAG(LuauSolverV2)
|
2023-12-02 10:04:44 +08:00
|
|
|
|
2023-08-05 01:01:35 +08:00
|
|
|
struct Unifier2Fixture
|
|
|
|
{
|
|
|
|
TypeArena arena;
|
|
|
|
BuiltinTypes builtinTypes;
|
|
|
|
Scope scope{builtinTypes.anyTypePack};
|
|
|
|
InternalErrorReporter iceReporter;
|
2023-09-23 02:10:49 +08:00
|
|
|
Unifier2 u2{NotNull{&arena}, NotNull{&builtinTypes}, NotNull{&scope}, NotNull{&iceReporter}};
|
2023-08-05 01:01:35 +08:00
|
|
|
ToStringOptions opts;
|
|
|
|
|
2024-08-31 03:28:44 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauSolverV2, true};
|
2023-08-05 01:01:35 +08:00
|
|
|
|
|
|
|
std::pair<TypeId, FreeType*> freshType()
|
|
|
|
{
|
|
|
|
FreeType ft{&scope, builtinTypes.neverType, builtinTypes.unknownType};
|
|
|
|
|
|
|
|
TypeId ty = arena.addType(ft);
|
|
|
|
FreeType* ftv = getMutable<FreeType>(ty);
|
|
|
|
REQUIRE(ftv != nullptr);
|
|
|
|
|
|
|
|
return {ty, ftv};
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string toString(TypeId ty)
|
|
|
|
{
|
|
|
|
return ::Luau::toString(ty, opts);
|
|
|
|
}
|
2023-09-30 08:22:06 +08:00
|
|
|
|
|
|
|
std::string toString(TypePackId ty)
|
|
|
|
{
|
|
|
|
return ::Luau::toString(ty, opts);
|
|
|
|
}
|
2023-08-05 01:01:35 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
TEST_SUITE_BEGIN("Unifier2");
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Unifier2Fixture, "T <: number")
|
|
|
|
{
|
|
|
|
auto [left, freeLeft] = freshType();
|
|
|
|
|
|
|
|
CHECK(u2.unify(left, builtinTypes.numberType));
|
|
|
|
|
|
|
|
CHECK("never" == toString(freeLeft->lowerBound));
|
|
|
|
CHECK("number" == toString(freeLeft->upperBound));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Unifier2Fixture, "number <: T")
|
|
|
|
{
|
|
|
|
auto [right, freeRight] = freshType();
|
|
|
|
|
|
|
|
CHECK(u2.unify(builtinTypes.numberType, right));
|
|
|
|
|
|
|
|
CHECK("number" == toString(freeRight->lowerBound));
|
|
|
|
CHECK("unknown" == toString(freeRight->upperBound));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Unifier2Fixture, "T <: U")
|
|
|
|
{
|
|
|
|
auto [left, freeLeft] = freshType();
|
|
|
|
auto [right, freeRight] = freshType();
|
|
|
|
|
|
|
|
CHECK(u2.unify(left, right));
|
|
|
|
|
2024-04-26 04:57:23 +08:00
|
|
|
CHECK("t1 where t1 = ('a <: (t1 <: 'b))" == toString(left));
|
|
|
|
CHECK("t1 where t1 = (('a <: t1) <: 'b)" == toString(right));
|
2023-08-05 01:01:35 +08:00
|
|
|
|
|
|
|
CHECK("never" == toString(freeLeft->lowerBound));
|
2024-04-26 04:57:23 +08:00
|
|
|
CHECK("t1 where t1 = (('a <: t1) <: 'b)" == toString(freeLeft->upperBound));
|
2023-08-05 01:01:35 +08:00
|
|
|
|
2024-04-26 04:57:23 +08:00
|
|
|
CHECK("t1 where t1 = ('a <: (t1 <: 'b))" == toString(freeRight->lowerBound));
|
2023-08-05 01:01:35 +08:00
|
|
|
CHECK("unknown" == toString(freeRight->upperBound));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Unifier2Fixture, "(string) -> () <: (X) -> Y...")
|
|
|
|
{
|
2023-09-16 00:27:45 +08:00
|
|
|
TypeId stringToUnit = arena.addType(FunctionType{arena.addTypePack({builtinTypes.stringType}), arena.addTypePack({})});
|
2023-08-05 01:01:35 +08:00
|
|
|
|
|
|
|
auto [x, xFree] = freshType();
|
|
|
|
TypePackId y = arena.freshTypePack(&scope);
|
|
|
|
|
2023-09-16 00:27:45 +08:00
|
|
|
TypeId xToY = arena.addType(FunctionType{arena.addTypePack({x}), y});
|
2023-08-05 01:01:35 +08:00
|
|
|
|
|
|
|
u2.unify(stringToUnit, xToY);
|
|
|
|
|
|
|
|
CHECK("string" == toString(xFree->upperBound));
|
|
|
|
|
|
|
|
const TypePack* yPack = get<TypePack>(follow(y));
|
|
|
|
REQUIRE(yPack != nullptr);
|
|
|
|
|
|
|
|
CHECK(0 == yPack->head.size());
|
|
|
|
CHECK(!yPack->tail);
|
|
|
|
}
|
|
|
|
|
2023-09-30 08:22:06 +08:00
|
|
|
TEST_CASE_FIXTURE(Unifier2Fixture, "unify_binds_free_subtype_tail_pack")
|
|
|
|
{
|
|
|
|
TypePackId numberPack = arena.addTypePack({builtinTypes.numberType});
|
|
|
|
|
|
|
|
TypePackId freeTail = arena.freshTypePack(&scope);
|
|
|
|
TypeId freeHead = arena.addType(FreeType{&scope, builtinTypes.neverType, builtinTypes.unknownType});
|
|
|
|
TypePackId freeAndFree = arena.addTypePack({freeHead}, freeTail);
|
|
|
|
|
|
|
|
u2.unify(freeAndFree, numberPack);
|
|
|
|
|
|
|
|
CHECK("('a <: number)" == toString(freeAndFree));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Unifier2Fixture, "unify_binds_free_supertype_tail_pack")
|
|
|
|
{
|
|
|
|
TypePackId numberPack = arena.addTypePack({builtinTypes.numberType});
|
|
|
|
|
|
|
|
TypePackId freeTail = arena.freshTypePack(&scope);
|
|
|
|
TypeId freeHead = arena.addType(FreeType{&scope, builtinTypes.neverType, builtinTypes.unknownType});
|
|
|
|
TypePackId freeAndFree = arena.addTypePack({freeHead}, freeTail);
|
|
|
|
|
|
|
|
u2.unify(numberPack, freeAndFree);
|
|
|
|
|
|
|
|
CHECK("(number <: 'a)" == toString(freeAndFree));
|
|
|
|
}
|
|
|
|
|
2023-08-05 01:01:35 +08:00
|
|
|
TEST_SUITE_END();
|