MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / lua_remove

Function lua_remove

emmy_debugger/src/api/lua_api_loader.cpp:351–362  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

349}
350
351void lua_remove(lua_State* L, int idx)
352{
353 if (luaVersion == LuaVersion::LUA_51 || luaVersion == LuaVersion::LUA_52 || luaVersion == LuaVersion::LUA_JIT)
354 {
355 e_lua_remove(L, idx);
356 }
357 else
358 {
359 e_lua_rotate(L, (idx), -1);
360 lua_pop(L, 1);
361 }
362}
363
364void* lua_newuserdata(lua_State* L, int size)
365{

Callers 1

CallMetaFunctionFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected