| 296 | |
| 297 | |
| 298 | LUA_API int lua_rawequal(lua_State *L, int index1, int index2) { |
| 299 | StkId o1 = index2addr(L, index1); |
| 300 | StkId o2 = index2addr(L, index2); |
| 301 | return (isvalid(o1) && isvalid(o2)) ? luaV_rawequalobj(o1, o2) : 0; |
| 302 | } |
| 303 | |
| 304 | |
| 305 | LUA_API void lua_arith(lua_State *L, int op) { |
no test coverage detected