| 122 | |
| 123 | |
| 124 | static int luaB_rawget (lua_State *L) { |
| 125 | luaL_checktype(L, 1, LUA_TTABLE); |
| 126 | luaL_checkany(L, 2); |
| 127 | lua_settop(L, 2); |
| 128 | lua_rawget(L, 1); |
| 129 | return 1; |
| 130 | } |
| 131 | |
| 132 | static int luaB_rawset (lua_State *L) { |
| 133 | luaL_checktype(L, 1, LUA_TTABLE); |
nothing calls this directly
no test coverage detected