Efficient proxy function for regular functions
| 453 | |
| 454 | // Efficient proxy function for regular functions |
| 455 | JSValue GoFunctionProxy(JSContext *ctx, JSValueConst this_val, |
| 456 | int argc, JSValueConst *argv, int magic) { |
| 457 | return goFunctionProxy(ctx, this_val, argc, argv, magic); |
| 458 | } |
| 459 | |
| 460 | // Class-related proxy functions - C layer wrappers for Go exports |
| 461 |
nothing calls this directly
no test coverage detected