| 159 | |
| 160 | |
| 161 | static int luaB_rawequal (lua_State *L) { |
| 162 | luaL_checkany(L, 1); |
| 163 | luaL_checkany(L, 2); |
| 164 | lua_pushboolean(L, lua_rawequal(L, 1, 2)); |
| 165 | return 1; |
| 166 | } |
| 167 | |
| 168 | |
| 169 | static int luaB_rawget (lua_State *L) { |
nothing calls this directly
no test coverage detected