| 140 | |
| 141 | |
| 142 | static int luaB_rawget (lua_State *L) { |
| 143 | luaL_checktype(L, 1, LUA_TTABLE); |
| 144 | luaL_checkany(L, 2); |
| 145 | lua_settop(L, 2); |
| 146 | lua_rawget(L, 1); |
| 147 | return 1; |
| 148 | } |
| 149 | |
| 150 | static int luaB_rawset (lua_State *L) { |
| 151 | luaL_checktype(L, 1, LUA_TTABLE); |
nothing calls this directly
no test coverage detected