| 820 | |
| 821 | |
| 822 | int luaK_codeABC (FuncState *fs, OpCode o, int a, int b, int c) { |
| 823 | lua_assert(getOpMode(o) == iABC); |
| 824 | lua_assert(getBMode(o) != OpArgN || b == 0); |
| 825 | lua_assert(getCMode(o) != OpArgN || c == 0); |
| 826 | return luaK_code(fs, CREATE_ABC(o, a, b, c), fs->ls->lastline); |
| 827 | } |
| 828 | |
| 829 | |
| 830 | int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) { |
no test coverage detected