MCPcopy Create free account
hub / github.com/PlutoLang/Pluto / luaB_newuserdata

Function luaB_newuserdata

src/lbaselib.cpp:591–596  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

589
590
591static int luaB_newuserdata (lua_State *L) {
592 lua_newuserdata(L, 0);
593 lua_newtable(L);
594 lua_setmetatable(L, -2);
595 return 1;
596}
597
598
599TValue *index2value (lua_State *L, int idx);

Callers

nothing calls this directly

Calls 1

lua_setmetatableFunction · 0.85

Tested by

no test coverage detected