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