MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / luaB_rawset

Function luaB_rawset

third-party/lua-5.5.0/src/lbaselib.c:176–183  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

174}
175
176static int luaB_rawset (lua_State *L) {
177 luaL_checktype(L, 1, LUA_TTABLE);
178 luaL_checkany(L, 2);
179 luaL_checkany(L, 3);
180 lua_settop(L, 3);
181 lua_rawset(L, 1);
182 return 1;
183}
184
185
186static int pushmode (lua_State *L, int oldmode) {

Callers

nothing calls this directly

Calls 4

luaL_checktypeFunction · 0.70
luaL_checkanyFunction · 0.70
lua_settopFunction · 0.70
lua_rawsetFunction · 0.70

Tested by

no test coverage detected