mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 06:15:44 +08:00
b23d43496b
### What's new * Light update this week, mostly fast flag cleanups. ### New Solver * Rename flag to enable new solver from `DebugLuauDeferredConstraintResolution` to `LuauSolverV2` * Added support for magic functions for the new type checker (as opposed to the type inference component) * Improved handling of `string.format` with magic function improvements * Cleaning up some of the reported errors by the new type checker * Minor refactoring of `TypeChecker2.cpp` that happens to make the diff very hard to read. --- ### Internal Contributors Co-authored-by: Aaron Weiss <aaronweiss@roblox.com> Co-authored-by: Andy Friesen <afriesen@roblox.com> Co-authored-by: Vighnesh Vijay <vvijay@roblox.com> Co-authored-by: Vyacheslav Egorov <vegorov@roblox.com> --------- Co-authored-by: Alexander McCord <amccord@roblox.com> Co-authored-by: Andy Friesen <afriesen@roblox.com> Co-authored-by: Vighnesh <vvijay@roblox.com> Co-authored-by: Aviral Goel <agoel@roblox.com> Co-authored-by: David Cope <dcope@roblox.com> Co-authored-by: Lily Brown <lbrown@roblox.com> Co-authored-by: Vyacheslav Egorov <vegorov@roblox.com> Co-authored-by: Junseo Yoo <jyoo@roblox.com>
65 lines
1.3 KiB
C++
65 lines
1.3 KiB
C++
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
#include "ConstraintGeneratorFixture.h"
|
|
#include "Fixture.h"
|
|
#include "doctest.h"
|
|
|
|
LUAU_FASTFLAG(LuauSolverV2);
|
|
|
|
using namespace Luau;
|
|
|
|
static TypeId requireBinding(Scope* scope, const char* name)
|
|
{
|
|
auto b = linearSearchForBinding(scope, name);
|
|
LUAU_ASSERT(b.has_value());
|
|
return *b;
|
|
}
|
|
|
|
TEST_SUITE_BEGIN("ConstraintSolver");
|
|
|
|
TEST_CASE_FIXTURE(ConstraintGeneratorFixture, "constraint_basics")
|
|
{
|
|
solve(R"(
|
|
local a = 55
|
|
local b = a
|
|
)");
|
|
|
|
TypeId bType = requireBinding(rootScope, "b");
|
|
|
|
CHECK("number" == toString(bType));
|
|
}
|
|
|
|
TEST_CASE_FIXTURE(ConstraintGeneratorFixture, "generic_function")
|
|
{
|
|
solve(R"(
|
|
local function id(a)
|
|
return a
|
|
end
|
|
)");
|
|
|
|
TypeId idType = requireBinding(rootScope, "id");
|
|
|
|
CHECK("<a>(a) -> a" == toString(idType));
|
|
}
|
|
|
|
TEST_CASE_FIXTURE(ConstraintGeneratorFixture, "proper_let_generalization")
|
|
{
|
|
solve(R"(
|
|
local function a(c)
|
|
local function d(e)
|
|
return c
|
|
end
|
|
|
|
return d
|
|
end
|
|
|
|
local b = a(5)
|
|
)");
|
|
|
|
TypeId idType = requireBinding(rootScope, "b");
|
|
|
|
CHECK("(unknown) -> number" == toString(idType));
|
|
}
|
|
|
|
TEST_SUITE_END();
|