luau/Analysis/include/Luau/TypeChecker2.h

18 lines
402 B
C
Raw Normal View History

2022-06-16 21:05:14 -04:00
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
#pragma once
#include "Luau/Ast.h"
#include "Luau/Module.h"
#include "Luau/NotNull.h"
2022-06-16 21:05:14 -04:00
namespace Luau
{
struct DcrLogger;
struct BuiltinTypes;
void check(NotNull<BuiltinTypes> builtinTypes, DcrLogger* logger, const SourceModule& sourceModule, Module* module);
2022-06-16 21:05:14 -04:00
} // namespace Luau