2022-06-03 13:32:20 -07:00
|
|
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
|
2023-11-03 12:47:28 -07:00
|
|
|
#include "ConstraintGeneratorFixture.h"
|
2022-09-15 15:13:58 -07:00
|
|
|
#include "Fixture.h"
|
|
|
|
#include "doctest.h"
|
|
|
|
|
2024-08-30 12:28:44 -07:00
|
|
|
LUAU_FASTFLAG(LuauSolverV2);
|
2023-09-22 11:10:49 -07:00
|
|
|
|
2022-06-03 13:32:20 -07:00
|
|
|
using namespace Luau;
|
|
|
|
|
2022-10-21 10:33:43 -07:00
|
|
|
static TypeId requireBinding(Scope* scope, const char* name)
|
2022-06-03 13:32:20 -07:00
|
|
|
{
|
|
|
|
auto b = linearSearchForBinding(scope, name);
|
|
|
|
LUAU_ASSERT(b.has_value());
|
|
|
|
return *b;
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_SUITE_BEGIN("ConstraintSolver");
|
|
|
|
|
2024-02-23 10:40:00 -08:00
|
|
|
TEST_CASE_FIXTURE(ConstraintGeneratorFixture, "constraint_basics")
|
2022-06-03 13:32:20 -07:00
|
|
|
{
|
2022-10-21 10:33:43 -07:00
|
|
|
solve(R"(
|
2022-06-03 13:32:20 -07:00
|
|
|
local a = 55
|
|
|
|
local b = a
|
|
|
|
)");
|
|
|
|
|
2022-06-30 16:29:02 -07:00
|
|
|
TypeId bType = requireBinding(rootScope, "b");
|
2022-06-03 13:32:20 -07:00
|
|
|
|
|
|
|
CHECK("number" == toString(bType));
|
|
|
|
}
|
|
|
|
|
2023-11-03 12:47:28 -07:00
|
|
|
TEST_CASE_FIXTURE(ConstraintGeneratorFixture, "generic_function")
|
2022-06-03 13:32:20 -07:00
|
|
|
{
|
2022-10-21 10:33:43 -07:00
|
|
|
solve(R"(
|
2022-06-03 13:32:20 -07:00
|
|
|
local function id(a)
|
|
|
|
return a
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
2022-06-30 16:29:02 -07:00
|
|
|
TypeId idType = requireBinding(rootScope, "id");
|
2022-06-03 13:32:20 -07:00
|
|
|
|
|
|
|
CHECK("<a>(a) -> a" == toString(idType));
|
|
|
|
}
|
|
|
|
|
2023-11-03 12:47:28 -07:00
|
|
|
TEST_CASE_FIXTURE(ConstraintGeneratorFixture, "proper_let_generalization")
|
2022-06-03 13:32:20 -07:00
|
|
|
{
|
2022-10-21 10:33:43 -07:00
|
|
|
solve(R"(
|
2022-06-03 13:32:20 -07:00
|
|
|
local function a(c)
|
|
|
|
local function d(e)
|
|
|
|
return c
|
|
|
|
end
|
|
|
|
|
|
|
|
return d
|
|
|
|
end
|
|
|
|
|
|
|
|
local b = a(5)
|
|
|
|
)");
|
|
|
|
|
2022-06-30 16:29:02 -07:00
|
|
|
TypeId idType = requireBinding(rootScope, "b");
|
2022-06-03 13:32:20 -07:00
|
|
|
|
2024-02-23 10:40:00 -08:00
|
|
|
CHECK("(unknown) -> number" == toString(idType));
|
2022-06-03 13:32:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_SUITE_END();
|