mirror of
https://github.com/luau-lang/luau.git
synced 2024-12-13 05:20:38 +00:00
15 lines
345 B
C++
15 lines
345 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"
|
|
|
|
namespace Luau
|
|
{
|
|
|
|
struct TypeArena;
|
|
struct Scope;
|
|
|
|
void quantify(TypeId ty, TypeLevel level);
|
|
std::optional<TypeId> quantify(TypeArena* arena, TypeId ty, Scope* scope);
|
|
|
|
} // namespace Luau
|