| 136 | |
| 137 | |
| 138 | static int luaB_rawequal (lua_State *L) { |
| 139 | luaL_checkany(L, 1); |
| 140 | luaL_checkany(L, 2); |
| 141 | lua_pushboolean(L, lua_rawequal(L, 1, 2)); |
| 142 | return 1; |
| 143 | } |
| 144 | |
| 145 | |
| 146 | static int luaB_rawlen (lua_State *L) { |
nothing calls this directly
no test coverage detected