** Code binary operators with no constant operand. */
| 1570 | ** Code binary operators with no constant operand. |
| 1571 | */ |
| 1572 | static void codebinNoK (FuncState *fs, BinOpr opr, |
| 1573 | expdesc *e1, expdesc *e2, int flip, int line) { |
| 1574 | if (flip) |
| 1575 | swapexps(e1, e2); /* back to original order */ |
| 1576 | codebinexpval(fs, opr, e1, e2, line); /* use standard operators */ |
| 1577 | } |
| 1578 | |
| 1579 | |
| 1580 | /* |
no test coverage detected