mirror of
https://github.com/luau-lang/luau.git
synced 2025-08-26 11:27:08 +01:00
## General - Support AstStatDeclareGlobal output as a source string (via @karl-police in #1889) - Luau heap dump correctly reports the size of a string, now including overhead for the string type - Prevent yields from Luau `xpcall` error handling function. ## Analysis - Avoid exponential blowup when normalizing union of normalized free variables. - Fix type pack-related bugs that caused infinite recursion when: - A generic type pack was bound to itself during subtyping. - In type pack flattening, when that same generic type pack was now being bound another generic type pack which contained it. - Properly simplify `any & (*error-type* | string)` to `*error-type* | *error-type* | string` instead of hanging due to creating a huge union type. --- Co-authored-by: Andy Friesen <afriesen@roblox.com> Co-authored-by: Ariel Weiss <aaronweiss@roblox.com> Co-authored-by: Hunter Goldstein <hgoldstein@roblox.com> Co-authored-by: Sora Kanosue <skanosue@roblox.com> Co-authored-by: Vyacheslav Egorov <vegorov@roblox.com> --------- Co-authored-by: Hunter Goldstein <hgoldstein@roblox.com> Co-authored-by: Varun Saini <61795485+vrn-sn@users.noreply.github.com> Co-authored-by: Menarul Alam <malam@roblox.com> Co-authored-by: Aviral Goel <agoel@roblox.com> Co-authored-by: Vighnesh <vvijay@roblox.com> Co-authored-by: Vyacheslav Egorov <vegorov@roblox.com> Co-authored-by: Ariel Weiss <aaronweiss@roblox.com> Co-authored-by: Andy Friesen <afriesen@roblox.com>
70 lines
2 KiB
C++
70 lines
2 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 "ScopedFlags.h"
|
|
|
|
LUAU_FASTFLAG(LuauSolverV2);
|
|
|
|
namespace Luau
|
|
{
|
|
|
|
ConstraintGeneratorFixture::ConstraintGeneratorFixture()
|
|
: Fixture()
|
|
, mainModule(new Module)
|
|
, simplifier(newSimplifier(NotNull{&arena}, getBuiltins()))
|
|
, forceTheFlag{FFlag::LuauSolverV2, true}
|
|
{
|
|
getFrontend(); // Force the frontend to exist in the constructor.
|
|
mainModule->name = "MainModule";
|
|
mainModule->humanReadableName = "MainModule";
|
|
|
|
BlockedTypePack::nextIndex = 0;
|
|
}
|
|
|
|
void ConstraintGeneratorFixture::generateConstraints(const std::string& code)
|
|
{
|
|
AstStatBlock* root = parse(code);
|
|
dfg = std::make_unique<DataFlowGraph>(
|
|
DataFlowGraphBuilder::build(root, NotNull{&mainModule->defArena}, NotNull{&mainModule->keyArena}, NotNull{&ice})
|
|
);
|
|
cg = std::make_unique<ConstraintGenerator>(
|
|
mainModule,
|
|
NotNull{&normalizer},
|
|
NotNull{simplifier.get()},
|
|
NotNull{&typeFunctionRuntime},
|
|
NotNull(&moduleResolver),
|
|
getBuiltins(),
|
|
NotNull(&ice),
|
|
getFrontend().globals.globalScope,
|
|
getFrontend().globals.globalTypeFunctionScope,
|
|
/*prepareModuleScope*/ nullptr,
|
|
&logger,
|
|
NotNull{dfg.get()},
|
|
std::vector<RequireCycle>()
|
|
);
|
|
cg->visitModuleRoot(root);
|
|
rootScope = cg->rootScope;
|
|
constraints = Luau::borrowConstraints(cg->constraints);
|
|
}
|
|
|
|
void ConstraintGeneratorFixture::solve(const std::string& code)
|
|
{
|
|
generateConstraints(code);
|
|
ConstraintSolver cs{
|
|
NotNull{&normalizer},
|
|
NotNull{simplifier.get()},
|
|
NotNull{&typeFunctionRuntime},
|
|
NotNull{rootScope},
|
|
constraints,
|
|
NotNull{&cg->scopeToFunction},
|
|
"MainModule",
|
|
NotNull(&moduleResolver),
|
|
{},
|
|
&logger,
|
|
NotNull{dfg.get()},
|
|
{}
|
|
};
|
|
|
|
cs.run();
|
|
}
|
|
|
|
} // namespace Luau
|