mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 22:35:43 +08:00
27 lines
786 B
C
27 lines
786 B
C
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
||
|
|
||
|
#include "Luau/ConstraintGraphBuilder.h"
|
||
|
#include "Luau/ToString.h"
|
||
|
|
||
|
#include <optional>
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
namespace Luau
|
||
|
{
|
||
|
|
||
|
struct ConstraintSolverLogger
|
||
|
{
|
||
|
std::string compileOutput();
|
||
|
void captureBoundarySnapshot(const Scope2* rootScope, std::vector<NotNull<const Constraint>>& unsolvedConstraints);
|
||
|
void prepareStepSnapshot(const Scope2* rootScope, NotNull<const Constraint> current, std::vector<NotNull<const Constraint>>& unsolvedConstraints);
|
||
|
void commitPreparedStepSnapshot();
|
||
|
|
||
|
private:
|
||
|
std::vector<std::string> snapshots;
|
||
|
std::optional<std::string> preparedSnapshot;
|
||
|
ToStringOptions opts;
|
||
|
};
|
||
|
|
||
|
} // namespace Luau
|