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