(this: unknown, event: Event)
| 299 | |
| 300 | // global shared zoneAwareCallback to handle all event callback with capture = true |
| 301 | const globalZoneAwareCaptureCallback = function (this: unknown, event: Event) { |
| 302 | return globalCallback(this, event, true); |
| 303 | }; |
| 304 | |
| 305 | function patchEventTargetMethods(obj: any, patchOptions?: PatchEventTargetOptions) { |
| 306 | if (!obj) { |
nothing calls this directly
no test coverage detected