luau/Analysis/include/Luau/Quantify.h

16 lines
333 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-16 20:54:42 -04:00
struct TypeArena;
2022-07-28 23:41:13 -04:00
struct Scope;
2022-06-03 16:32:20 -04:00
2022-02-17 19:41:20 -05:00
void quantify(TypeId ty, TypeLevel level);
2022-07-28 23:41:13 -04:00
TypeId quantify(TypeArena* arena, TypeId ty, Scope* scope);
} // namespace Luau