| 1 | function createPseudoWorker(context) { |
| 2 | class PseudoWorker { |
| 3 | constructor(path) { |
| 4 | this.terminated = false; |
| 5 | this.worker = context.evaluateHandle(path => new Worker(path), path); |
nothing calls this directly
no outgoing calls
no test coverage detected