MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / db_getmetatable

Function db_getmetatable

Source/Misc/lua/src/lua.c:11545–11551  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11543
11544
11545static int db_getmetatable (lua_State *L) {
11546luaL_checkany(L, 1);
11547if (!lua_getmetatable(L, 1)) {
11548lua_pushnil(L); /* no metatable */
11549}
11550return 1;
11551}
11552
11553
11554static int db_setmetatable (lua_State *L) {

Callers

nothing calls this directly

Calls 3

luaL_checkanyFunction · 0.85
lua_getmetatableFunction · 0.85
lua_pushnilFunction · 0.85

Tested by

no test coverage detected