MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / luaE_extendCI

Function luaE_extendCI

extlibs/lua/src/lstate.c:156–168  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

154
155
156CallInfo *luaE_extendCI (lua_State *L) {
157 CallInfo *ci;
158 lua_assert(L->ci->next == NULL);
159 luaE_enterCcall(L);
160 ci = luaM_new(L, CallInfo);
161 lua_assert(L->ci->next == NULL);
162 L->ci->next = ci;
163 ci->previous = L->ci;
164 ci->next = NULL;
165 ci->u.l.trap = 0;
166 L->nci++;
167 return ci;
168}
169
170
171/*

Callers

nothing calls this directly

Calls 1

luaE_enterCcallFunction · 0.85

Tested by

no test coverage detected