| 167 | } |
| 168 | |
| 169 | bool PyObjectProxyHandler::enumerate(JSContext *cx, JS::HandleObject proxy, |
| 170 | JS::MutableHandleIdVector props) const { |
| 171 | return this->ownPropertyKeys(cx, proxy, props); |
| 172 | } |
| 173 | |
| 174 | bool PyObjectProxyHandler::hasOwn(JSContext *cx, JS::HandleObject proxy, JS::HandleId id, |
| 175 | bool *bp) const { |
nothing calls this directly
no test coverage detected