* @brief Create the JS `internalBinding` function */
| 48 | * @brief Create the JS `internalBinding` function |
| 49 | */ |
| 50 | JSFunction *createInternalBinding(JSContext *cx) { |
| 51 | return JS_NewFunction(cx, internalBindingFn, 1, 0, "internalBinding"); |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * @brief Convert the `internalBinding(namespace)` function to a Python function |
no outgoing calls
no test coverage detected