luau/tests/ConstraintGraphBuilderFixture.cpp

39 lines
1.4 KiB
C++
Raw Normal View History

2022-09-16 06:13:58 +08:00
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
#include "ConstraintGraphBuilderFixture.h"
2023-01-07 00:07:19 +08:00
#include "Luau/TypeReduction.h"
2022-09-16 06:13:58 +08:00
namespace Luau
{
ConstraintGraphBuilderFixture::ConstraintGraphBuilderFixture()
: Fixture()
, mainModule(new Module)
, forceTheFlag{"DebugLuauDeferredConstraintResolution", true}
{
2023-01-07 00:07:19 +08:00
mainModule->reduction = std::make_unique<TypeReduction>(NotNull{&mainModule->internalTypes}, builtinTypes, NotNull{&ice});
2023-01-04 01:33:19 +08:00
BlockedType::nextIndex = 0;
2022-09-16 06:13:58 +08:00
BlockedTypePack::nextIndex = 0;
}
2022-10-22 01:33:43 +08:00
void ConstraintGraphBuilderFixture::generateConstraints(const std::string& code)
{
AstStatBlock* root = parse(code);
dfg = std::make_unique<DataFlowGraph>(DataFlowGraphBuilder::build(root, NotNull{&ice}));
2023-01-04 01:33:19 +08:00
cgb = std::make_unique<ConstraintGraphBuilder>("MainModule", mainModule, &arena, NotNull(&moduleResolver), builtinTypes, NotNull(&ice),
2022-10-22 01:33:43 +08:00
frontend.getGlobalScope(), &logger, NotNull{dfg.get()});
cgb->visit(root);
rootScope = cgb->rootScope;
2022-11-11 06:04:44 +08:00
constraints = Luau::borrowConstraints(cgb->constraints);
2022-10-22 01:33:43 +08:00
}
void ConstraintGraphBuilderFixture::solve(const std::string& code)
{
generateConstraints(code);
2022-11-11 06:04:44 +08:00
ConstraintSolver cs{NotNull{&normalizer}, NotNull{rootScope}, constraints, "MainModule", NotNull(&moduleResolver), {}, &logger};
2022-10-22 01:33:43 +08:00
cs.run();
}
2022-10-14 06:59:53 +08:00
} // namespace Luau