| 234 | |
| 235 | |
| 236 | int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) { |
| 237 | lua_assert(getOpMode(o) == iABx || getOpMode(o) == iAsBx); |
| 238 | lua_assert(getCMode(o) == OpArgN); |
| 239 | lua_assert(a <= MAXARG_A && bc <= MAXARG_Bx); |
| 240 | return luaK_code(fs, CREATE_ABx(o, a, bc)); |
| 241 | } |
| 242 | |
| 243 | |
| 244 | static int codeextraarg (FuncState *fs, int a) { |
no test coverage detected