| 2089 | |
| 2090 | |
| 2091 | LUA_API int lua_type (lua_State *L, int idx) { |
| 2092 | StkId o = index2adr(L, idx); |
| 2093 | return (o == luaO_nilobject) ? LUA_TNONE : ttype(o); |
| 2094 | } |
| 2095 | |
| 2096 | |
| 2097 | LUA_API const char *lua_typename (lua_State *L, int t) { |
no test coverage detected