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

Function luaK_codeABx

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

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

Source from the content-addressed store, hash-verified

416** Format and emit an 'iABx' instruction.
417*/
418int luaK_codeABx (FuncState *fs, OpCode o, int A, int Bc) {
419 lua_assert(getOpMode(o) == iABx);
420 lua_assert(A <= MAXARG_A && Bc <= MAXARG_Bx);
421 return luaK_code(fs, CREATE_ABx(o, A, Bc));
422}
423
424
425/*

Callers 4

codeclosureFunction · 0.70
forbodyFunction · 0.70
luaK_codekFunction · 0.70
luaK_codecheckglobalFunction · 0.70

Calls 1

luaK_codeFunction · 0.70

Tested by

no test coverage detected