** Main operation less than or equal to; return 'l <= r'. */
| 569 | ** Main operation less than or equal to; return 'l <= r'. |
| 570 | */ |
| 571 | int luaV_lessequal (lua_State *L, const TValue *l, const TValue *r) { |
| 572 | if (ttisnumber(l) && ttisnumber(r)) /* both operands are numbers? */ |
| 573 | return LEnum(l, r); |
| 574 | else return lessequalothers(L, l, r); |
| 575 | } |
| 576 | |
| 577 | |
| 578 | /* |
no test coverage detected