| 11031 | |
| 11032 | |
| 11033 | static int luaB_rawget (lua_State *L) { |
| 11034 | luaL_checktype(L, 1, LUA_TTABLE); |
| 11035 | luaL_checkany(L, 2); |
| 11036 | lua_settop(L, 2); |
| 11037 | lua_rawget(L, 1); |
| 11038 | return 1; |
| 11039 | } |
| 11040 | |
| 11041 | static int luaB_rawset (lua_State *L) { |
| 11042 | luaL_checktype(L, 1, LUA_TTABLE); |
nothing calls this directly
no test coverage detected