| 4487 | |
| 4488 | |
| 4489 | int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) { |
| 4490 | lua_assert(getOpMode(o) == iABx || getOpMode(o) == iAsBx); |
| 4491 | lua_assert(getCMode(o) == OpArgN); |
| 4492 | return luaK_code(fs, CREATE_ABx(o, a, bc), fs->ls->lastline); |
| 4493 | } |
| 4494 | |
| 4495 | |
| 4496 | void luaK_setlist (FuncState *fs, int base, int nelems, int tostore) { |
no test coverage detected