| 47 | } |
| 48 | |
| 49 | Py_ssize_t JSArrayProxyMethodDefinitions::JSArrayProxy_length(JSArrayProxy *self) |
| 50 | { |
| 51 | uint32_t length; |
| 52 | JS::GetArrayLength(GLOBAL_CX, *(self->jsArray), &length); |
| 53 | return (Py_ssize_t)length; |
| 54 | } |
| 55 | |
| 56 | PyObject *JSArrayProxyMethodDefinitions::JSArrayProxy_get(JSArrayProxy *self, PyObject *key) |
| 57 | { |
nothing calls this directly
no outgoing calls
no test coverage detected