| 2095 | |
| 2096 | |
| 2097 | LUA_API const char *lua_typename (lua_State *L, int t) { |
| 2098 | UNUSED(L); |
| 2099 | return (t == LUA_TNONE) ? "no value" : luaT_typenames[t]; |
| 2100 | } |
| 2101 | |
| 2102 | |
| 2103 | LUA_API int lua_iscfunction (lua_State *L, int idx) { |
no outgoing calls
no test coverage detected