** Raise a type error */
| 720 | ** Raise a type error |
| 721 | */ |
| 722 | static l_noret typeerror (lua_State *L, const TValue *o, const char *op, |
| 723 | const char *extra) { |
| 724 | const char *t = luaT_objtypename(L, o); |
| 725 | luaG_runerror(L, "attempt to %s a %s value%s", op, t, extra); |
| 726 | } |
| 727 | |
| 728 | |
| 729 | /* |
no test coverage detected