MCPcopy Create free account
hub / github.com/PlutoLang/Pluto / codebinNoK

Function codebinNoK

src/lcode.cpp:1714–1719  ·  view source on GitHub ↗

** Code binary operators with no constant operand. */

Source from the content-addressed store, hash-verified

1712** Code binary operators with no constant operand.
1713*/
1714static void codebinNoK (FuncState *fs, BinOpr opr,
1715 expdesc *e1, expdesc *e2, int flip, int line) {
1716 if (flip)
1717 swapexps(e1, e2); /* back to original order */
1718 codebinexpval(fs, opr, e1, e2, line); /* use standard operators */
1719}
1720
1721
1722/*

Callers 2

codearithFunction · 0.85
codebitwiseFunction · 0.85

Calls 2

swapexpsFunction · 0.85
codebinexpvalFunction · 0.85

Tested by

no test coverage detected