bool PlatformData::Push( lua_State* L ) { PlatformData** p = (PlatformData**)lua_newuserdata( L, sizeof( PlatformData* ) ); *p = this; luaL_getmetatable( L, kPlatformDataKey ); lua_setmetatable( L, -2 ); return true; } */
source not stored for this graph (policy: none)
nothing calls this directly
no test coverage detected