2022-06-04 06:15:45 +08:00
|
|
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
|
|
|
|
#include "Fixture.h"
|
|
|
|
|
|
|
|
#include "doctest.h"
|
|
|
|
|
|
|
|
#include "Luau/ConstraintGraphBuilder.h"
|
|
|
|
#include "Luau/ConstraintSolver.h"
|
|
|
|
|
|
|
|
using namespace Luau;
|
|
|
|
|
2022-07-01 07:52:43 +08:00
|
|
|
static TypeId requireBinding(NotNull<Scope2> scope, const char* name)
|
2022-06-04 06:15:45 +08:00
|
|
|
{
|
|
|
|
auto b = linearSearchForBinding(scope, name);
|
|
|
|
LUAU_ASSERT(b.has_value());
|
|
|
|
return *b;
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_SUITE_BEGIN("ConstraintSolver");
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(ConstraintGraphBuilderFixture, "hello")
|
|
|
|
{
|
|
|
|
AstStatBlock* block = parse(R"(
|
|
|
|
local a = 55
|
|
|
|
local b = a
|
|
|
|
)");
|
|
|
|
|
|
|
|
cgb.visit(block);
|
2022-07-01 07:52:43 +08:00
|
|
|
NotNull<Scope2> rootScope = NotNull(cgb.rootScope);
|
2022-06-04 06:15:45 +08:00
|
|
|
|
2022-07-01 07:52:43 +08:00
|
|
|
ConstraintSolver cs{&arena, rootScope};
|
2022-06-04 06:15:45 +08:00
|
|
|
|
|
|
|
cs.run();
|
|
|
|
|
2022-07-01 07:52:43 +08:00
|
|
|
TypeId bType = requireBinding(rootScope, "b");
|
2022-06-04 06:15:45 +08:00
|
|
|
|
|
|
|
CHECK("number" == toString(bType));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(ConstraintGraphBuilderFixture, "generic_function")
|
|
|
|
{
|
|
|
|
AstStatBlock* block = parse(R"(
|
|
|
|
local function id(a)
|
|
|
|
return a
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
cgb.visit(block);
|
2022-07-01 07:52:43 +08:00
|
|
|
NotNull<Scope2> rootScope = NotNull(cgb.rootScope);
|
2022-06-04 06:15:45 +08:00
|
|
|
|
2022-07-01 07:52:43 +08:00
|
|
|
ConstraintSolver cs{&arena, rootScope};
|
2022-06-04 06:15:45 +08:00
|
|
|
|
|
|
|
cs.run();
|
|
|
|
|
2022-07-01 07:52:43 +08:00
|
|
|
TypeId idType = requireBinding(rootScope, "id");
|
2022-06-04 06:15:45 +08:00
|
|
|
|
|
|
|
CHECK("<a>(a) -> a" == toString(idType));
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 1
|
|
|
|
TEST_CASE_FIXTURE(ConstraintGraphBuilderFixture, "proper_let_generalization")
|
|
|
|
{
|
|
|
|
AstStatBlock* block = parse(R"(
|
|
|
|
local function a(c)
|
|
|
|
local function d(e)
|
|
|
|
return c
|
|
|
|
end
|
|
|
|
|
|
|
|
return d
|
|
|
|
end
|
|
|
|
|
|
|
|
local b = a(5)
|
|
|
|
)");
|
|
|
|
|
|
|
|
cgb.visit(block);
|
2022-07-01 07:52:43 +08:00
|
|
|
NotNull<Scope2> rootScope = NotNull(cgb.rootScope);
|
2022-06-04 06:15:45 +08:00
|
|
|
|
|
|
|
ToStringOptions opts;
|
|
|
|
|
2022-07-01 07:52:43 +08:00
|
|
|
ConstraintSolver cs{&arena, rootScope};
|
2022-06-04 06:15:45 +08:00
|
|
|
|
|
|
|
cs.run();
|
|
|
|
|
2022-07-01 07:52:43 +08:00
|
|
|
TypeId idType = requireBinding(rootScope, "b");
|
2022-06-04 06:15:45 +08:00
|
|
|
|
|
|
|
CHECK("<a>(a) -> number" == toString(idType, opts));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
TEST_SUITE_END();
|