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