| 584 | |
| 585 | |
| 586 | l_noret luaG_typeerror (lua_State *L, const TValue *o, const char *op) { |
| 587 | const char *t = luaT_objtypename(L, o); |
| 588 | luaG_runerror(L, "attempt to %s a %s value%s", op, t, varinfo(L, o)); |
| 589 | } |
| 590 | |
| 591 | |
| 592 | l_noret luaG_concaterror (lua_State *L, const TValue *p1, const TValue *p2) { |
no test coverage detected