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

Function luaK_jump

third-party/lua-5.1.5/src/lcode.c:59–66  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57
58
59int luaK_jump (FuncState *fs) {
60 int jpc = fs->jpc; /* save list of jumps to here */
61 int j;
62 fs->jpc = NO_JUMP;
63 j = luaK_codeAsBx(fs, OP_JMP, 0, NO_JUMP);
64 luaK_concat(fs, &j, jpc); /* keep them on hold */
65 return j;
66}
67
68
69void luaK_ret (FuncState *fs, int first, int nret) {

Callers 7

breakstatFunction · 0.70
whilestatFunction · 0.70
repeatstatFunction · 0.70
forbodyFunction · 0.70
ifstatFunction · 0.70
condjumpFunction · 0.70
exp2regFunction · 0.70

Calls 1

luaK_concatFunction · 0.70

Tested by

no test coverage detected