Method proxy - handles both instance and static methods Corresponds to QuickJS JSCFunctionType.generic_magic
| 469 | // Method proxy - handles both instance and static methods |
| 470 | // Corresponds to QuickJS JSCFunctionType.generic_magic |
| 471 | JSValue GoClassMethodProxy(JSContext *ctx, JSValueConst this_val, |
| 472 | int argc, JSValueConst *argv, int magic) { |
| 473 | return goClassMethodProxy(ctx, this_val, argc, argv, magic); |
| 474 | } |
| 475 | |
| 476 | // Accessor getter proxy |
| 477 | // Corresponds to QuickJS JSCFunctionType.getter_magic |
nothing calls this directly
no test coverage detected