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