Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Roblox
GitHub Repository: Roblox/luau
Path: blob/master/Require/src/RequireImpl.h
2725 views
1
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
2
#pragma once
3
4
struct lua_State;
5
6
namespace Luau::Require
7
{
8
9
int lua_require(lua_State* L);
10
int lua_proxyrequire(lua_State* L);
11
int lua_requirecont(lua_State* L, int status);
12
13
int registerModuleImpl(lua_State* L);
14
15
int clearCacheEntry(lua_State* L);
16
int clearCache(lua_State* L);
17
18
} // namespace Luau::Require
19
20