| 91 | } |
| 92 | |
| 93 | bool PyDictProxyHandler::getOwnEnumerablePropertyKeys( |
| 94 | JSContext *cx, JS::HandleObject proxy, |
| 95 | JS::MutableHandleIdVector props) const { |
| 96 | return this->ownPropertyKeys(cx, proxy, props); |
| 97 | } |
| 98 | |
| 99 | bool PyDictProxyHandler::defineProperty(JSContext *cx, JS::HandleObject proxy, |
| 100 | JS::HandleId id, |
nothing calls this directly
no test coverage detected