| 57 | |
| 58 | |
| 59 | int luaK_jump (FuncState *fs) { |
| 60 | int jpc = fs->jpc; /* save list of jumps to here */ |
| 61 | int j; |
| 62 | fs->jpc = NO_JUMP; |
| 63 | j = luaK_codeAsBx(fs, OP_JMP, 0, NO_JUMP); |
| 64 | luaK_concat(fs, &j, jpc); /* keep them on hold */ |
| 65 | return j; |
| 66 | } |
| 67 | |
| 68 | |
| 69 | void luaK_ret (FuncState *fs, int first, int nret) { |
no test coverage detected