luau/Analysis/include/Luau/Clone.h

30 lines
782 B
C
Raw Normal View History

2022-04-07 13:53:47 -07: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 10:33:43 -07:00
#include <Luau/NotNull.h>
2022-05-19 16:46:52 -07:00
#include "Luau/TypeArena.h"
2023-01-03 19:33:19 +02:00
#include "Luau/Type.h"
2022-04-07 13:53:47 -07: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
{
2023-08-11 15:55:30 +03:00
NotNull<BuiltinTypes> builtinTypes;
2022-04-14 14:57:15 -07:00
SeenTypes seenTypes;
SeenTypePacks seenTypePacks;
2022-04-07 13:53:47 -07:00
};
2022-04-14 14:57:15 -07: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 13:53:47 -07:00
} // namespace Luau