| 251 | |
| 252 | |
| 253 | int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) { |
| 254 | lua_assert(getOpMode(o) == iABx || getOpMode(o) == iAsBx); |
| 255 | lua_assert(getCMode(o) == OpArgN); |
| 256 | lua_assert(a <= MAXARG_A && bc <= MAXARG_Bx); |
| 257 | return luaK_code(fs, CREATE_ABx(o, a, bc)); |
| 258 | } |
| 259 | |
| 260 | |
| 261 | static int codeextraarg (FuncState *fs, int a) { |
no test coverage detected