** Code binary operators with no constant operand. */
| 1712 | ** Code binary operators with no constant operand. |
| 1713 | */ |
| 1714 | static 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 | /* |
no test coverage detected