** Emit an "extra argument" instruction (format 'iAx') */
| 439 | ** Emit an "extra argument" instruction (format 'iAx') |
| 440 | */ |
| 441 | static int codeextraarg (FuncState *fs, int a) { |
| 442 | lua_assert(a <= MAXARG_Ax); |
| 443 | return luaK_code(fs, CREATE_Ax(OP_EXTRAARG, a)); |
| 444 | } |
| 445 | |
| 446 | |
| 447 | /* |
no test coverage detected