MCPcopy Create free account
hub / github.com/Serial-Studio/Serial-Studio / luaB_rawget

Function luaB_rawget

lib/lua/src/lbaselib.c:166–172  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

164
165
166static int luaB_rawget (lua_State *L) {
167 luaL_checktype(L, 1, LUA_TTABLE);
168 luaL_checkany(L, 2);
169 lua_settop(L, 2);
170 lua_rawget(L, 1);
171 return 1;
172}
173
174static int luaB_rawset (lua_State *L) {
175 luaL_checktype(L, 1, LUA_TTABLE);

Callers

nothing calls this directly

Calls 4

luaL_checktypeFunction · 0.85
luaL_checkanyFunction · 0.85
lua_settopFunction · 0.85
lua_rawgetFunction · 0.85

Tested by

no test coverage detected