MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / condjump

Function condjump

extlibs/lua/src/lcode.c:221–224  ·  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

219** followed by a jump. Return jump position.
220*/
221static int condjump (FuncState *fs, OpCode op, int A, int B, int C, int k) {
222 luaK_codeABCk(fs, op, A, B, C, k);
223 return luaK_jump(fs);
224}
225
226
227/*

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