| 3726 | |
| 3727 | |
| 3728 | int luaK_jump (FuncState *fs) { |
| 3729 | int jpc = fs->jpc; /* save list of jumps to here */ |
| 3730 | int j; |
| 3731 | fs->jpc = NO_JUMP; |
| 3732 | j = luaK_codeAsBx(fs, OP_JMP, 0, NO_JUMP); |
| 3733 | luaK_concat(fs, &j, jpc); /* keep them on hold */ |
| 3734 | return j; |
| 3735 | } |
| 3736 | |
| 3737 | |
| 3738 | void luaK_ret (FuncState *fs, int first, int nret) { |
no test coverage detected