| 32 | } |
| 33 | |
| 34 | Py_ssize_t JSObjectValuesProxyMethodDefinitions::JSObjectValuesProxy_length(JSObjectValuesProxy *self) |
| 35 | { |
| 36 | if (self->dv.dv_dict == NULL) { |
| 37 | return 0; |
| 38 | } |
| 39 | return JSObjectProxyMethodDefinitions::JSObjectProxy_length((JSObjectProxy *)self->dv.dv_dict); |
| 40 | } |
| 41 | |
| 42 | int JSObjectValuesProxyMethodDefinitions::JSObjectValuesProxy_contains(JSObjectValuesProxy *self, PyObject *key) |
| 43 | { |
nothing calls this directly
no outgoing calls
no test coverage detected