| 246 | |
| 247 | |
| 248 | LUA_API const char *lua_typename (lua_State *L, int t) { |
| 249 | UNUSED(L); |
| 250 | return (t == LUA_TNONE) ? "no value" : luaT_typenames[t]; |
| 251 | } |
| 252 | |
| 253 | |
| 254 | LUA_API int lua_iscfunction (lua_State *L, int idx) { |
no outgoing calls
no test coverage detected