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
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Luau/ConstraintGraphBuilder.h"
|
2022-10-22 01:33:43 +08:00
|
|
|
#include "Luau/ConstraintSolver.h"
|
2022-09-16 06:13:58 +08:00
|
|
|
#include "Luau/DcrLogger.h"
|
|
|
|
#include "Luau/TypeArena.h"
|
|
|
|
#include "Luau/Module.h"
|
|
|
|
|
|
|
|
#include "Fixture.h"
|
|
|
|
#include "ScopedFlags.h"
|
|
|
|
|
|
|
|
namespace Luau
|
|
|
|
{
|
|
|
|
|
|
|
|
struct ConstraintGraphBuilderFixture : Fixture
|
|
|
|
{
|
|
|
|
TypeArena arena;
|
|
|
|
ModulePtr mainModule;
|
|
|
|
DcrLogger logger;
|
2022-10-22 01:33:43 +08:00
|
|
|
UnifierSharedState sharedState{&ice};
|
|
|
|
Normalizer normalizer{&arena, singletonTypes, NotNull{&sharedState}};
|
|
|
|
|
|
|
|
std::unique_ptr<DataFlowGraph> dfg;
|
|
|
|
std::unique_ptr<ConstraintGraphBuilder> cgb;
|
|
|
|
Scope* rootScope = nullptr;
|
|
|
|
|
|
|
|
std::vector<NotNull<Constraint>> constraints;
|
2022-09-16 06:13:58 +08:00
|
|
|
|
|
|
|
ScopedFastFlag forceTheFlag;
|
|
|
|
|
|
|
|
ConstraintGraphBuilderFixture();
|
2022-10-22 01:33:43 +08:00
|
|
|
|
|
|
|
void generateConstraints(const std::string& code);
|
|
|
|
void solve(const std::string& code);
|
2022-09-16 06:13:58 +08:00
|
|
|
};
|
|
|
|
|
2022-10-14 06:59:53 +08:00
|
|
|
} // namespace Luau
|