Simplified interrupt handler (no handlerArgs complexity)
| 862 | |
| 863 | // Simplified interrupt handler (no handlerArgs complexity) |
| 864 | int interruptHandler(JSRuntime *rt, void *opaque) { |
| 865 | JSRuntime *runtimePtr = (JSRuntime*)opaque; |
| 866 | return goInterruptHandler(runtimePtr); |
| 867 | } |
| 868 | |
| 869 | void SetInterruptHandler(JSRuntime *rt) { |
| 870 | // Use rt itself as opaque parameter for Go lookup |
nothing calls this directly
no test coverage detected