** Code binary operators with no constant operand. */
| 1488 | ** Code binary operators with no constant operand. |
| 1489 | */ |
| 1490 | static void codebinNoK (FuncState *fs, BinOpr opr, |
| 1491 | expdesc *e1, expdesc *e2, int flip, int line) { |
| 1492 | if (flip) |
| 1493 | swapexps(e1, e2); /* back to original order */ |
| 1494 | codebinexpval(fs, opr, e1, e2, line); /* use standard operators */ |
| 1495 | } |
| 1496 | |
| 1497 | |
| 1498 | /* |
no test coverage detected