| 33 | } |
| 34 | |
| 35 | Py_ssize_t JSObjectItemsProxyMethodDefinitions::JSObjectItemsProxy_length(JSObjectItemsProxy *self) |
| 36 | { |
| 37 | if (self->dv.dv_dict == NULL) { |
| 38 | return 0; |
| 39 | } |
| 40 | return JSObjectProxyMethodDefinitions::JSObjectProxy_length((JSObjectProxy *)self->dv.dv_dict); |
| 41 | } |
| 42 | |
| 43 | int JSObjectItemsProxyMethodDefinitions::JSObjectItemsProxy_traverse(JSObjectItemsProxy *self, visitproc visit, void *arg) { |
| 44 | Py_VISIT(self->dv.dv_dict); |
nothing calls this directly
no outgoing calls
no test coverage detected