| 810 | |
| 811 | |
| 812 | int luaK_codeABC (FuncState *fs, OpCode o, int a, int b, int c) { |
| 813 | lua_assert(getOpMode(o) == iABC); |
| 814 | lua_assert(getBMode(o) != OpArgN || b == 0); |
| 815 | lua_assert(getCMode(o) != OpArgN || c == 0); |
| 816 | return luaK_code(fs, CREATE_ABC(o, a, b, c), fs->ls->lastline); |
| 817 | } |
| 818 | |
| 819 | |
| 820 | int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) { |
no test coverage detected