2022-04-15 05:57:15 +08:00
|
|
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
|
|
|
|
#include "Luau/Substitution.h"
|
|
|
|
#include "Luau/TypeVar.h"
|
|
|
|
#include "Luau/Module.h"
|
|
|
|
|
|
|
|
namespace Luau
|
|
|
|
{
|
|
|
|
|
|
|
|
struct InternalErrorReporter;
|
|
|
|
|
|
|
|
bool isSubtype(TypeId superTy, TypeId subTy, InternalErrorReporter& ice);
|
2022-06-17 08:54:42 +08:00
|
|
|
bool isSubtype(TypePackId superTy, TypePackId subTy, InternalErrorReporter& ice);
|
2022-04-15 05:57:15 +08:00
|
|
|
|
|
|
|
std::pair<TypeId, bool> normalize(TypeId ty, TypeArena& arena, InternalErrorReporter& ice);
|
|
|
|
std::pair<TypeId, bool> normalize(TypeId ty, const ModulePtr& module, InternalErrorReporter& ice);
|
|
|
|
std::pair<TypePackId, bool> normalize(TypePackId ty, TypeArena& arena, InternalErrorReporter& ice);
|
|
|
|
std::pair<TypePackId, bool> normalize(TypePackId ty, const ModulePtr& module, InternalErrorReporter& ice);
|
|
|
|
|
|
|
|
} // namespace Luau
|