** Emit an "extra argument" instruction (format 'iAx') */
| 446 | ** Emit an "extra argument" instruction (format 'iAx') |
| 447 | */ |
| 448 | static int codeextraarg (FuncState *fs, int a) { |
| 449 | lua_assert(a <= MAXARG_Ax); |
| 450 | return luaK_code(fs, CREATE_Ax(OP_EXTRAARG, a)); |
| 451 | } |
| 452 | |
| 453 | |
| 454 | /* |
no test coverage detected