** Raise a type error */
| 740 | ** Raise a type error |
| 741 | */ |
| 742 | static l_noret typeerror (lua_State *L, const TValue *o, const char *op, |
| 743 | const char *extra) { |
| 744 | const char *t = luaT_objtypename(L, o); |
| 745 | luaG_runerror(L, "attempt to %s a %s value%s", op, t, extra); |
| 746 | } |
| 747 | |
| 748 | |
| 749 | /* |
no test coverage detected