| 147 | |
| 148 | |
| 149 | static int luaB_rawequal (lua_State *L) { |
| 150 | luaL_checkany(L, 1); |
| 151 | luaL_checkany(L, 2); |
| 152 | lua_pushboolean(L, lua_rawequal(L, 1, 2)); |
| 153 | return 1; |
| 154 | } |
| 155 | |
| 156 | |
| 157 | static int luaB_rawlen (lua_State *L) { |
nothing calls this directly
no test coverage detected