| 694 | |
| 695 | |
| 696 | l_noret luaG_typeerror (lua_State *L, const TValue *o, const char *op) { |
| 697 | const char *t = luaT_objtypename(L, o); |
| 698 | luaG_runerror(L, "attempt to %s a %s value%s", op, t, varinfo(L, o)); |
| 699 | } |
| 700 | |
| 701 | |
| 702 | l_noret luaG_forerror (lua_State *L, const TValue *o, const char *what) { |
no test coverage detected