** Main operation less than; return 'l < r'. */
| 547 | ** Main operation less than; return 'l < r'. |
| 548 | */ |
| 549 | int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r) { |
| 550 | if (ttisnumber(l) && ttisnumber(r)) /* both operands are numbers? */ |
| 551 | return LTnum(l, r); |
| 552 | else return lessthanothers(L, l, r); |
| 553 | } |
| 554 | |
| 555 | |
| 556 | /* |
no test coverage detected