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

Function luaB_rawset

src/lbaselib.cpp:227–237  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

225}
226
227static int luaB_rawset (lua_State *L) {
228 luaL_checktype(L, 1, LUA_TTABLE);
229#ifdef PLUTO_ENABLE_TABLE_FREEZING
230 lua_erriffrozen(L, 1);
231#endif
232 luaL_checkany(L, 2);
233 luaL_checkany(L, 3);
234 lua_settop(L, 3);
235 lua_rawset(L, 1);
236 return 1;
237}
238
239
240static int pushmode (lua_State *L, int oldmode) {

Callers

nothing calls this directly

Calls 5

luaL_checktypeFunction · 0.85
lua_erriffrozenFunction · 0.85
luaL_checkanyFunction · 0.85
lua_settopFunction · 0.85
lua_rawsetFunction · 0.85

Tested by

no test coverage detected