** Code a "conditional jump", that is, a test or comparison opcode ** followed by a jump. Return jump position. */
| 156 | ** followed by a jump. Return jump position. |
| 157 | */ |
| 158 | static int condjump (FuncState *fs, OpCode op, int A, int B, int C) { |
| 159 | luaK_codeABC(fs, op, A, B, C); |
| 160 | return luaK_jump(fs); |
| 161 | } |
| 162 | |
| 163 | |
| 164 | /* |
no test coverage detected