| 20 | #include <Python.h> |
| 21 | |
| 22 | void JSFunctionProxyMethodDefinitions::JSFunctionProxy_dealloc(JSFunctionProxy *self) |
| 23 | { |
| 24 | delete self->jsFunc; |
| 25 | } |
| 26 | |
| 27 | PyObject *JSFunctionProxyMethodDefinitions::JSFunctionProxy_new(PyTypeObject *subtype, PyObject *args, PyObject *kwds) { |
| 28 | JSFunctionProxy *self = (JSFunctionProxy *)subtype->tp_alloc(subtype, 0); |
nothing calls this directly
no outgoing calls
no test coverage detected