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

Function condjump

third-party/lua-5.3.5/src/lcode.c:158–161  ·  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

156** followed by a jump. Return jump position.
157*/
158static 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/*

Callers 2

jumponcondFunction · 0.70
codecompFunction · 0.70

Calls 2

luaK_codeABCFunction · 0.70
luaK_jumpFunction · 0.70

Tested by

no test coverage detected