** Emit an "extra argument" instruction (format 'iAx') */
| 333 | ** Emit an "extra argument" instruction (format 'iAx') |
| 334 | */ |
| 335 | static int codeextraarg (FuncState *fs, int a) { |
| 336 | lua_assert(a <= MAXARG_Ax); |
| 337 | return luaK_code(fs, CREATE_Ax(OP_EXTRAARG, a)); |
| 338 | } |
| 339 | |
| 340 | |
| 341 | /* |
no test coverage detected