MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / codesJ

Function codesJ

3rd/lua-5.4.3/src/lcode.c:428–433  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

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

Callers 1

luaK_jumpFunction · 0.85

Calls 1

luaK_codeFunction · 0.85

Tested by

no test coverage detected