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