| 531 | |
| 532 | |
| 533 | l_noret luaG_typeerror (lua_State *L, const TValue *o, const char *op) { |
| 534 | const char *t = objtypename(o); |
| 535 | luaG_runerror(L, "attempt to %s a %s value%s", op, t, varinfo(L, o)); |
| 536 | } |
| 537 | |
| 538 | |
| 539 | l_noret luaG_concaterror (lua_State *L, const TValue *p1, const TValue *p2) { |
no test coverage detected