luau/Analysis/include/Luau/Quantify.h

16 lines
335 B
C
Raw Normal View History

// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
#pragma once
#include "Luau/TypeVar.h"
namespace Luau
{
2022-06-17 02:05:14 +01:00
struct TypeArena;
struct Scope2;
2022-02-18 01:18:01 +00:00
void quantify(TypeId ty, TypeLevel level);
2022-06-17 02:05:14 +01:00
TypeId quantify(TypeArena* arena, TypeId ty, Scope2* scope);
} // namespace Luau