| 706 | |
| 707 | |
| 708 | l_noret luaG_concaterror (lua_State *L, const TValue *p1, const TValue *p2) { |
| 709 | if (ttisstring(p1) || cvt2str(p1)) p1 = p2; |
| 710 | luaG_typeerror(L, p1, "concatenate"); |
| 711 | } |
| 712 | |
| 713 | |
| 714 | l_noret luaG_opinterror (lua_State *L, const TValue *p1, |
no test coverage detected