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

Function codesJ

third-party/lua-5.5.0/src/lcode.c:439–444  ·  view source on GitHub ↗

** Format and emit an 'isJ' instruction. */

Source from the content-addressed store, hash-verified

437** Format and emit an 'isJ' instruction.
438*/
439static int codesJ (FuncState *fs, OpCode o, int sj, int k) {
440 int j = sj + OFFSET_sJ;
441 lua_assert(getOpMode(o) == isJ);
442 lua_assert(j <= MAXARG_sJ && (k & ~1) == 0);
443 return luaK_code(fs, CREATE_sJ(o, j, k));
444}
445
446
447/*

Callers 1

luaK_jumpFunction · 0.70

Calls 1

luaK_codeFunction · 0.70

Tested by

no test coverage detected