** Code a "conditional jump", that is, a test or comparison opcode ** followed by a jump. Return jump position. */
| 219 | ** followed by a jump. Return jump position. |
| 220 | */ |
| 221 | static int condjump (FuncState *fs, OpCode op, int A, int B, int C, int k) { |
| 222 | luaK_codeABCk(fs, op, A, B, C, k); |
| 223 | return luaK_jump(fs); |
| 224 | } |
| 225 | |
| 226 | |
| 227 | /* |
no test coverage detected