luau/Analysis/include/Luau/ToDot.h

28 lines
672 B
C
Raw Normal View History

2021-12-03 07:20:08 +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/Common.h"
2023-10-21 04:36:26 +08:00
#include "Luau/TypeFwd.h"
2021-12-03 07:20:08 +08:00
#include <string>
namespace Luau
{
struct ToDotOptions
{
bool showPointers = true; // Show pointer value in the node label
bool duplicatePrimitives = true; // Display primitive types and 'any' as separate nodes
};
std::string toDot(TypeId ty, const ToDotOptions& opts);
std::string toDot(TypePackId tp, const ToDotOptions& opts);
std::string toDot(TypeId ty);
std::string toDot(TypePackId tp);
void dumpDot(TypeId ty);
void dumpDot(TypePackId tp);
} // namespace Luau