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

Function lua_pcall

emmy_debugger/src/api/lua_api_loader.cpp:295–302  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

293}
294
295int lua_pcall(lua_State* L, int nargs, int nresults, int errfunc)
296{
297 if (luaVersion > LuaVersion::LUA_51)
298 {
299 return e_lua_pcallk(L, nargs, nresults, errfunc, 0, nullptr);
300 }
301 return e_lua_pcall(L, nargs, nresults, errfunc);
302}
303
304void luaL_setfuncs(lua_State* L, const luaL_Reg* l, int nup)
305{

Callers 7

AttachMethod · 0.50
CallMetaFunctionFunction · 0.50
GetFileMethod · 0.50
CheckDoStringMethod · 0.50
DoEvalMethod · 0.50
QueryVariableGenericMethod · 0.50
QueryParentThreadMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected