| 240 | } |
| 241 | |
| 242 | int luaK_codeABx(FuncState *fs, OpCode o, int a, unsigned int bc) |
| 243 | { |
| 244 | lua_assert(getOpMode(o) == iABx || getOpMode(o) == iAsBx); |
| 245 | lua_assert(getCMode(o) == OpArgN); |
| 246 | lua_assert(a <= MAXARG_A && bc <= MAXARG_Bx); |
| 247 | return luaK_code(fs, CREATE_ABx(o, a, bc)); |
| 248 | } |
| 249 | |
| 250 | static int codeextraarg(FuncState *fs, int a) |
| 251 | { |
no test coverage detected