| 594 | |
| 595 | |
| 596 | void luaG_concaterror(lua_State *L, const TValue *p1, const TValue *p2) { |
| 597 | if (ttisstring(p1) || cvt2str(p1)) p1 = p2; |
| 598 | luaG_typeerror(L, p1, "concatenate"); |
| 599 | } |
| 600 | |
| 601 | |
| 602 | void luaG_opinterror(lua_State *L, const TValue *p1, |
no test coverage detected