MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / lua_call

Function lua_call

emmy_debugger/src/api/lua_api_loader.cpp:286–293  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

284}
285
286void lua_call(lua_State* L, int nargs, int nresults)
287{
288 if (luaVersion > LuaVersion::LUA_51)
289 {
290 return e_lua_callk(L, nargs, nresults, 0, nullptr);
291 }
292 return (void)e_lua_call(L, nargs, nresults);
293}
294
295int lua_pcall(lua_State* L, int nargs, int nresults, int errfunc)
296{

Callers 4

LuaErrorFunction · 0.50
TcpListenMethod · 0.50
TcpConnectMethod · 0.50
FixPathFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected