MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / condjump

Function condjump

third-party/lua-5.4.6/src/lcode.c:223–226  ·  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

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

Callers 3

jumponcondFunction · 0.70
codeorderFunction · 0.70
codeeqFunction · 0.70

Calls 2

luaK_codeABCkFunction · 0.70
luaK_jumpFunction · 0.70

Tested by

no test coverage detected