| 78 | } |
| 79 | |
| 80 | bool PyDictProxyHandler::enumerate(JSContext *cx, JS::HandleObject proxy, |
| 81 | JS::MutableHandleIdVector props) const { |
| 82 | return this->ownPropertyKeys(cx, proxy, props); |
| 83 | } |
| 84 | |
| 85 | bool PyDictProxyHandler::hasOwn(JSContext *cx, JS::HandleObject proxy, JS::HandleId id, |
| 86 | bool *bp) const { |
nothing calls this directly
no test coverage detected