| 11023 | |
| 11024 | |
| 11025 | static int luaB_rawequal (lua_State *L) { |
| 11026 | luaL_checkany(L, 1); |
| 11027 | luaL_checkany(L, 2); |
| 11028 | lua_pushboolean(L, lua_rawequal(L, 1, 2)); |
| 11029 | return 1; |
| 11030 | } |
| 11031 | |
| 11032 | |
| 11033 | static int luaB_rawget (lua_State *L) { |
nothing calls this directly
no test coverage detected