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

Function codebini

third-party/lua-5.4.6/src/lcode.c:1440–1446  ·  view source on GitHub ↗

** Code binary operators with immediate operands. */

Source from the content-addressed store, hash-verified

1438** Code binary operators with immediate operands.
1439*/
1440static void codebini (FuncState *fs, OpCode op,
1441 expdesc *e1, expdesc *e2, int flip, int line,
1442 TMS event) {
1443 int v2 = int2sC(cast_int(e2->u.ival)); /* immediate operand */
1444 lua_assert(e2->k == VKINT);
1445 finishbinexpval(fs, e1, e2, op, v2, flip, line, OP_MMBINI, event);
1446}
1447
1448
1449/*

Callers 2

codecommutativeFunction · 0.70
luaK_posfixFunction · 0.70

Calls 1

finishbinexpvalFunction · 0.70

Tested by

no test coverage detected