| 172 | |
| 173 | |
| 174 | void luaT_trybinassocTM (lua_State *L, const TValue *p1, const TValue *p2, |
| 175 | int flip, StkId res, TMS event) { |
| 176 | if (flip) |
| 177 | luaT_trybinTM(L, p2, p1, res, event); |
| 178 | else |
| 179 | luaT_trybinTM(L, p1, p2, res, event); |
| 180 | } |
| 181 | |
| 182 | |
| 183 | void luaT_trybiniTM (lua_State *L, const TValue *p1, lua_Integer i2, |
no test coverage detected