| 140 | |
| 141 | |
| 142 | int luaT_callorderTM(lua_State *L, const TValue *p1, const TValue *p2, |
| 143 | TMS event) { |
| 144 | if (!luaT_callbinTM(L, p1, p2, L->top, event)) |
| 145 | return -1; /* no metamethod */ |
| 146 | else |
| 147 | return !l_isfalse(L->top); |
| 148 | } |
| 149 |
no test coverage detected