luau/Analysis/include/Luau/Instantiation.h

84 lines
2.7 KiB
C
Raw Normal View History

2022-05-27 04:33:48 +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/NotNull.h"
2022-05-27 04:33:48 +08:00
#include "Luau/Substitution.h"
2023-01-04 01:33:19 +08:00
#include "Luau/Type.h"
2022-05-27 04:33:48 +08:00
#include "Luau/Unifiable.h"
namespace Luau
{
struct BuiltinTypes;
2022-05-27 04:33:48 +08:00
struct TxnLog;
struct TypeArena;
struct TypeCheckLimits;
2022-05-27 04:33:48 +08:00
// A substitution which replaces generic types in a given set by free types.
struct ReplaceGenerics : Substitution
{
2023-09-16 00:27:45 +08:00
ReplaceGenerics(const TxnLog* log, TypeArena* arena, NotNull<BuiltinTypes> builtinTypes, TypeLevel level, Scope* scope,
const std::vector<TypeId>& generics, const std::vector<TypePackId>& genericPacks)
2022-05-27 04:33:48 +08:00
: Substitution(log, arena)
, builtinTypes(builtinTypes)
2022-05-27 04:33:48 +08:00
, level(level)
2022-09-30 06:11:54 +08:00
, scope(scope)
2022-05-27 04:33:48 +08:00
, generics(generics)
, genericPacks(genericPacks)
{
}
NotNull<BuiltinTypes> builtinTypes;
2022-05-27 04:33:48 +08:00
TypeLevel level;
2022-09-30 06:11:54 +08:00
Scope* scope;
2022-05-27 04:33:48 +08:00
std::vector<TypeId> generics;
std::vector<TypePackId> genericPacks;
bool ignoreChildren(TypeId ty) override;
bool isDirty(TypeId ty) override;
bool isDirty(TypePackId tp) override;
TypeId clean(TypeId ty) override;
TypePackId clean(TypePackId tp) override;
};
// A substitution which replaces generic functions by monomorphic functions
struct Instantiation : Substitution
{
Instantiation(const TxnLog* log, TypeArena* arena, NotNull<BuiltinTypes> builtinTypes, TypeLevel level, Scope* scope)
2022-05-27 04:33:48 +08:00
: Substitution(log, arena)
, builtinTypes(builtinTypes)
2022-05-27 04:33:48 +08:00
, level(level)
2022-09-30 06:11:54 +08:00
, scope(scope)
2022-05-27 04:33:48 +08:00
{
}
NotNull<BuiltinTypes> builtinTypes;
2022-05-27 04:33:48 +08:00
TypeLevel level;
2022-09-30 06:11:54 +08:00
Scope* scope;
2022-05-27 04:33:48 +08:00
bool ignoreChildren(TypeId ty) override;
bool isDirty(TypeId ty) override;
bool isDirty(TypePackId tp) override;
TypeId clean(TypeId ty) override;
TypePackId clean(TypePackId tp) override;
};
/** Attempt to instantiate a type. Only used under local type inference.
*
* When given a generic function type, instantiate() will return a copy with the
* generics replaced by fresh types. Instantiation will return the same TypeId
* back if the function does not have any generics.
*
* All higher order generics are left as-is. For example, instantiation of
* <X>(<Y>(Y) -> (X, Y)) -> (X, Y) is (<Y>(Y) -> ('x, Y)) -> ('x, Y)
*
* We substitute the generic X for the free 'x, but leave the generic Y alone.
*
* Instantiation fails only when processing the type causes internal recursion
* limits to be exceeded.
*/
2023-09-16 00:27:45 +08:00
std::optional<TypeId> instantiate(
NotNull<BuiltinTypes> builtinTypes, NotNull<TypeArena> arena, NotNull<TypeCheckLimits> limits, NotNull<Scope> scope, TypeId ty);
2022-05-27 04:33:48 +08:00
} // namespace Luau