** Main operation less than or equal to; return 'l <= r'. */
| 555 | ** Main operation less than or equal to; return 'l <= r'. |
| 556 | */ |
| 557 | int luaV_lessequal (lua_State *L, const TValue *l, const TValue *r) { |
| 558 | if (ttisnumber(l) && ttisnumber(r)) /* both operands are numbers? */ |
| 559 | return LEnum(l, r); |
| 560 | else return lessequalothers(L, l, r); |
| 561 | } |
| 562 | |
| 563 | |
| 564 | /* |
no test coverage detected