// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details #pragma once #include "Luau/Require.h" #include "Luau/Compiler.h" #include "lua.h" #include #include void requireConfigInit(luarequire_Configuration* config); struct ReplRequirer { ReplRequirer( std::function copts, std::function coverageActive, std::function codegenEnabled, std::function coverageTrack ); std::function copts; std::function coverageActive; std::function codegenEnabled; std::function coverageTrack; std::string absPath; std::string relPath; std::string suffix; };