| 40 | } |
| 41 | |
| 42 | int JSObjectKeysProxyMethodDefinitions::JSObjectKeysProxy_contains(JSObjectKeysProxy *self, PyObject *key) |
| 43 | { |
| 44 | if (self->dv.dv_dict == NULL) { |
| 45 | return 0; |
| 46 | } |
| 47 | return JSObjectProxyMethodDefinitions::JSObjectProxy_contains((JSObjectProxy *)self->dv.dv_dict, key); |
| 48 | } |
| 49 | |
| 50 | int JSObjectKeysProxyMethodDefinitions::JSObjectKeysProxy_traverse(JSObjectKeysProxy *self, visitproc visit, void *arg) { |
| 51 | Py_VISIT(self->dv.dv_dict); |
nothing calls this directly
no outgoing calls
no test coverage detected