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