mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-16 09:54:02 +01:00
16 lines
436 B
C++
16 lines
436 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/NotNull.h"
|
|
#include "Luau/TypeFwd.h"
|
|
|
|
namespace Luau
|
|
{
|
|
|
|
struct Scope;
|
|
struct TypeArena;
|
|
|
|
void inferGenericPolarities(NotNull<TypeArena> arena, NotNull<Scope> scope, TypeId ty);
|
|
void inferGenericPolarities(NotNull<TypeArena> arena, NotNull<Scope> scope, TypePackId tp);
|
|
|
|
} // namespace Luau
|