Finalizer proxy - unified cleanup handler Corresponds to QuickJS JSClassDef.finalizer Called when JS object is garbage collected
| 490 | // Corresponds to QuickJS JSClassDef.finalizer |
| 491 | // Called when JS object is garbage collected |
| 492 | void GoClassFinalizerProxy(JSRuntime *rt, JSValue val) { |
| 493 | goClassFinalizerProxy(rt, val); |
| 494 | } |
| 495 | |
| 496 | |
| 497 | // ============================================================================ |
nothing calls this directly
no test coverage detected