MCPcopy Create free account
hub / github.com/Overload-Technologies/Overload / condjump

Function condjump

Dependencies/lua/src/lcode.c:222–225  ·  view source on GitHub ↗

** Code a "conditional jump", that is, a test or comparison opcode ** followed by a jump. Return jump position. */

Source from the content-addressed store, hash-verified

220** followed by a jump. Return jump position.
221*/
222static 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/*

Callers 3

jumponcondFunction · 0.85
codeorderFunction · 0.85
codeeqFunction · 0.85

Calls 2

luaK_codeABCkFunction · 0.85
luaK_jumpFunction · 0.85

Tested by

no test coverage detected