** Raise a type error */
| 749 | ** Raise a type error |
| 750 | */ |
| 751 | static l_noret typeerror (lua_State *L, const TValue *o, const char *op, |
| 752 | const char *extra) { |
| 753 | const char *t = luaT_objtypename(L, o); |
| 754 | luaG_runerror(L, "attempt to %s a %s value%s", op, t, extra); |
| 755 | } |
| 756 | |
| 757 | |
| 758 | /* |
no test coverage detected