MCPcopy Create free account
hub / github.com/ArduPilot/ardupilot / luaB_getmetatable

Function luaB_getmetatable

libraries/AP_Scripting/lua/src/lbaselib.c:117–125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

115
116
117static int luaB_getmetatable (lua_State *L) {
118 luaL_checkany(L, 1);
119 if (!lua_getmetatable(L, 1)) {
120 lua_pushnil(L);
121 return 1; /* no metatable */
122 }
123 luaL_getmetafield(L, 1, "__metatable");
124 return 1; /* returns either __metatable field (if present) or metatable */
125}
126
127
128static int luaB_setmetatable (lua_State *L) {

Callers

nothing calls this directly

Calls 4

luaL_checkanyFunction · 0.85
lua_getmetatableFunction · 0.85
lua_pushnilFunction · 0.85
luaL_getmetafieldFunction · 0.85

Tested by

no test coverage detected