| 180 | } |
| 181 | |
| 182 | bool PyObjectProxyHandler::getOwnEnumerablePropertyKeys( |
| 183 | JSContext *cx, JS::HandleObject proxy, |
| 184 | JS::MutableHandleIdVector props) const { |
| 185 | return this->ownPropertyKeys(cx, proxy, props); |
| 186 | } |
| 187 | |
| 188 | bool PyObjectProxyHandler::defineProperty(JSContext *cx, JS::HandleObject proxy, |
| 189 | JS::HandleId id, |
nothing calls this directly
no test coverage detected