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

Function luaK_codeABx

third-party/lua-5.4.6/src/lcode.c:409–413  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

407** Format and emit an 'iABx' instruction.
408*/
409int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) {
410 lua_assert(getOpMode(o) == iABx);
411 lua_assert(a <= MAXARG_A && bc <= MAXARG_Bx);
412 return luaK_code(fs, CREATE_ABx(o, a, bc));
413}
414
415
416/*

Callers 3

codeclosureFunction · 0.70
forbodyFunction · 0.70
luaK_codekFunction · 0.70

Calls 1

luaK_codeFunction · 0.70

Tested by

no test coverage detected