2022-04-07 21:53:47 +01:00
|
|
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
#pragma once
|
|
|
|
|
2022-10-21 18:33:43 +01:00
|
|
|
#include <Luau/NotNull.h>
|
2022-05-20 00:46:52 +01:00
|
|
|
#include "Luau/TypeArena.h"
|
2023-01-03 17:33:19 +00:00
|
|
|
#include "Luau/Type.h"
|
2022-04-07 21:53:47 +01:00
|
|
|
|
|
|
|
#include <unordered_map>
|
|
|
|
|
|
|
|
namespace Luau
|
|
|
|
{
|
|
|
|
|
|
|
|
// Only exposed so they can be unit tested.
|
|
|
|
using SeenTypes = std::unordered_map<TypeId, TypeId>;
|
|
|
|
using SeenTypePacks = std::unordered_map<TypePackId, TypePackId>;
|
|
|
|
|
|
|
|
struct CloneState
|
|
|
|
{
|
2022-04-14 22:57:15 +01:00
|
|
|
SeenTypes seenTypes;
|
|
|
|
SeenTypePacks seenTypePacks;
|
|
|
|
|
2022-04-07 21:53:47 +01:00
|
|
|
int recursionCount = 0;
|
|
|
|
};
|
|
|
|
|
2022-04-14 22:57:15 +01:00
|
|
|
TypePackId clone(TypePackId tp, TypeArena& dest, CloneState& cloneState);
|
|
|
|
TypeId clone(TypeId tp, TypeArena& dest, CloneState& cloneState);
|
|
|
|
TypeFun clone(const TypeFun& typeFun, TypeArena& dest, CloneState& cloneState);
|
2022-04-07 21:53:47 +01:00
|
|
|
|
2022-08-11 21:42:54 +01:00
|
|
|
TypeId shallowClone(TypeId ty, TypeArena& dest, const TxnLog* log, bool alwaysClone = false);
|
2022-10-21 18:33:43 +01:00
|
|
|
TypeId shallowClone(TypeId ty, NotNull<TypeArena> dest);
|
2022-06-03 21:32:20 +01:00
|
|
|
|
2022-04-07 21:53:47 +01:00
|
|
|
} // namespace Luau
|