mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 22:35:43 +08:00
42 lines
913 B
C++
42 lines
913 B
C++
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
#pragma once
|
|
|
|
#include "Luau/Type.h"
|
|
#include "Luau/DenseHash.h"
|
|
|
|
#include <vector>
|
|
|
|
namespace Luau
|
|
{
|
|
|
|
struct TypeArena;
|
|
struct Scope;
|
|
|
|
void quantify(TypeId ty, TypeLevel level);
|
|
|
|
// TODO: This is eerily similar to the pattern that NormalizedClassType
|
|
// implements. We could, and perhaps should, merge them together.
|
|
template<typename K, typename V>
|
|
struct OrderedMap
|
|
{
|
|
std::vector<K> keys;
|
|
DenseHashMap<K, V> pairings{nullptr};
|
|
|
|
void push(K k, V v)
|
|
{
|
|
keys.push_back(k);
|
|
pairings[k] = v;
|
|
}
|
|
};
|
|
|
|
struct QuantifierResult
|
|
{
|
|
TypeId result;
|
|
OrderedMap<TypeId, TypeId> insertedGenerics;
|
|
OrderedMap<TypePackId, TypePackId> insertedGenericPacks;
|
|
};
|
|
|
|
std::optional<QuantifierResult> quantify(TypeArena* arena, TypeId ty, Scope* scope);
|
|
|
|
} // namespace Luau
|