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

Function luaK_codeABx

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

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

Source from the content-addressed store, hash-verified

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

Callers 3

codeclosureFunction · 0.85
forbodyFunction · 0.85
luaK_codekFunction · 0.85

Calls 1

luaK_codeFunction · 0.85

Tested by

no test coverage detected