(target, args)
| 22 | // add them to the array for tracking and resuming later |
| 23 | self.AudioContext = new Proxy(self.AudioContext, { |
| 24 | construct(target, args) { |
| 25 | const result = new target(...args); |
| 26 | audioContextList.push(result); |
| 27 | return result; |
| 28 | }, |
| 29 | }); |
| 30 | |
| 31 | // To resume all AudioContexts being tracked |
nothing calls this directly
no outgoing calls
no test coverage detected