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