| 4479 | |
| 4480 | |
| 4481 | int luaK_codeABC (FuncState *fs, OpCode o, int a, int b, int c) { |
| 4482 | lua_assert(getOpMode(o) == iABC); |
| 4483 | lua_assert(getBMode(o) != OpArgN || b == 0); |
| 4484 | lua_assert(getCMode(o) != OpArgN || c == 0); |
| 4485 | return luaK_code(fs, CREATE_ABC(o, a, b, c), fs->ls->lastline); |
| 4486 | } |
| 4487 | |
| 4488 | |
| 4489 | int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) { |
no test coverage detected