| 547 | |
| 548 | |
| 549 | l_noret luaG_concaterror (lua_State *L, StkId p1, StkId p2) { |
| 550 | if (ttisstring(p1) || ttisnumber(p1)) p1 = p2; |
| 551 | lua_assert(!ttisstring(p1) && !ttisnumber(p1)); |
| 552 | luaG_typeerror(L, p1, "concatenate"); |
| 553 | } |
| 554 | |
| 555 | |
| 556 | l_noret luaG_aritherror (lua_State *L, const TValue *p1, const TValue *p2) { |
no test coverage detected