** Code a "conditional jump", that is, a test or comparison opcode ** followed by a jump. Return jump position. */
| 163 | ** followed by a jump. Return jump position. |
| 164 | */ |
| 165 | static int condjump (FuncState *fs, OpCode op, int A, int B, int C) { |
| 166 | luaK_codeABC(fs, op, A, B, C); |
| 167 | return luaK_jump(fs); |
| 168 | } |
| 169 | |
| 170 | |
| 171 | /* |
no test coverage detected