| 165 | |
| 166 | |
| 167 | void luaT_tryconcatTM (lua_State *L) { |
| 168 | StkId top = L->top; |
| 169 | if (!callbinTM(L, s2v(top - 2), s2v(top - 1), top - 2, TM_CONCAT)) |
| 170 | luaG_concaterror(L, s2v(top - 2), s2v(top - 1)); |
| 171 | } |
| 172 | |
| 173 | |
| 174 | void luaT_trybinassocTM (lua_State *L, const TValue *p1, const TValue *p2, |
no test coverage detected