MCPcopy Create free account
hub / github.com/BZFlag-Dev/bzflag / lua_call

Function lua_call

other_src/lua/src/lapi.cpp:808–817  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

806
807
808LUA_API void lua_call (lua_State *L, int nargs, int nresults) {
809 StkId func;
810 lua_lock(L);
811 api_checknelems(L, nargs+1);
812 checkresults(L, nargs, nresults);
813 func = L->top - (nargs+1);
814 luaD_call(L, func, nresults);
815 adjustresults(L, nresults);
816 lua_unlock(L);
817}
818
819
820

Callers 15

foreachiFunction · 0.70
foreachFunction · 0.70
comp_customFunction · 0.70
ll_requireFunction · 0.70
dooptionsFunction · 0.70
foldcapFunction · 0.70
functioncapFunction · 0.70
runtimecapFunction · 0.70
add_valueFunction · 0.70
luaL_callmetaFunction · 0.70
hookfFunction · 0.70
luaB_printFunction · 0.70

Calls 1

luaD_callFunction · 0.70

Tested by

no test coverage detected