MCPcopy Create free account
hub / github.com/Snapchat/KeyDB / pushclosure

Function pushclosure

deps/lua/src/lparser.c:310–325  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

308
309
310static void pushclosure (LexState *ls, FuncState *func, expdesc *v) {
311 FuncState *fs = ls->fs;
312 Proto *f = fs->f;
313 int oldsize = f->sizep;
314 int i;
315 luaM_growvector(ls->L, f->p, fs->np, f->sizep, Proto *,
316 MAXARG_Bx, "constant table overflow");
317 while (oldsize < f->sizep) f->p[oldsize++] = NULL;
318 f->p[fs->np++] = func->f;
319 luaC_objbarrier(ls->L, f, func->f);
320 init_exp(v, VRELOCABLE, luaK_codeABx(fs, OP_CLOSURE, 0, fs->np-1));
321 for (i=0; i<func->f->nups; i++) {
322 OpCode o = (func->upvalues[i].k == VLOCAL) ? OP_MOVE : OP_GETUPVAL;
323 luaK_codeABC(fs, o, 0, func->upvalues[i].info, 0);
324 }
325}
326
327
328static void open_func (LexState *ls, FuncState *fs) {

Callers 1

bodyFunction · 0.85

Calls 3

init_expFunction · 0.85
luaK_codeABxFunction · 0.85
luaK_codeABCFunction · 0.85

Tested by

no test coverage detected