| 198 | |
| 199 | |
| 200 | static int call_orderTM (lua_State *L, const TValue *p1, const TValue *p2, |
| 201 | TMS event) { |
| 202 | if (!call_binTM(L, p1, p2, L->top, event)) |
| 203 | return -1; /* no metamethod */ |
| 204 | else |
| 205 | return !l_isfalse(L->top); |
| 206 | } |
| 207 | |
| 208 | |
| 209 | static int l_strcmp (const TString *ls, const TString *rs) { |
no test coverage detected