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

Function codesJ

extlibs/lua/src/lcode.c:437–442  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

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

Callers 1

luaK_jumpFunction · 0.85

Calls 1

luaK_codeFunction · 0.85

Tested by

no test coverage detected