** Raise a type error with "standard" information about the faulty ** object 'o' (using 'varinfo'). */
| 731 | ** object 'o' (using 'varinfo'). |
| 732 | */ |
| 733 | l_noret luaG_typeerror (lua_State *L, const TValue *o, const char *op) { |
| 734 | typeerror(L, o, op, varinfo(L, o)); |
| 735 | } |
| 736 | |
| 737 | |
| 738 | /* |
no test coverage detected