// 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" namespace Luau { struct BuiltinTypes; struct DcrLogger; struct TypeCheckLimits; struct UnifierSharedState; struct SourceModule; struct Module; void check(NotNull builtinTypes, NotNull sharedState, NotNull limits, DcrLogger* logger, const SourceModule& sourceModule, Module* module); } // namespace Luau