MCPcopy Create free account
hub / github.com/axmolengine/axmol / codesJ

Function codesJ

3rdparty/lua/plainlua/lcode.c:430–435  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

428** Format and emit an 'isJ' instruction.
429*/
430static int codesJ (FuncState *fs, OpCode o, int sj, int k) {
431 unsigned int j = sj + OFFSET_sJ;
432 lua_assert(getOpMode(o) == isJ);
433 lua_assert(j <= MAXARG_sJ && (k & ~1) == 0);
434 return luaK_code(fs, CREATE_sJ(o, j, k));
435}
436
437
438/*

Callers 1

luaK_jumpFunction · 0.85

Calls 1

luaK_codeFunction · 0.85

Tested by

no test coverage detected