MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / lua_call

Function lua_call

Source/Misc/lua/src/lua.c:2625–2634  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2623
2624
2625LUA_API void lua_call (lua_State *L, int nargs, int nresults) {
2626StkId func;
2627lua_lock(L);
2628api_checknelems(L, nargs+1);
2629checkresults(L, nargs, nresults);
2630func = L->top - (nargs+1);
2631luaD_call(L, func, nresults);
2632adjustresults(L, nresults);
2633lua_unlock(L);
2634}
2635
2636
2637

Callers 15

createLuaStateMethod · 0.85
createLuaStateAudioMethod · 0.85
luausb_generic_indexFunction · 0.85
luausb_generic_newindexFunction · 0.85
proxy_loaderFunction · 0.85
super_callbackMethod · 0.85
finalizeMethod · 0.85
destroy_instanceFunction · 0.85
set_instance_valueFunction · 0.85
get_instance_valueFunction · 0.85
dispatch_operatorFunction · 0.85

Calls 1

luaD_callFunction · 0.85

Tested by

no test coverage detected