** Emit an "extra argument" instruction (format 'iAx') */
| 340 | ** Emit an "extra argument" instruction (format 'iAx') |
| 341 | */ |
| 342 | static int codeextraarg (FuncState *fs, int a) { |
| 343 | lua_assert(a <= MAXARG_Ax); |
| 344 | return luaK_code(fs, CREATE_Ax(OP_EXTRAARG, a)); |
| 345 | } |
| 346 | |
| 347 | |
| 348 | /* |
no test coverage detected