()
| 1844 | workerCodeBody(port); |
| 1845 | } |
| 1846 | function sharedWorkerCode() { |
| 1847 | self.onconnect = function (e) { |
| 1848 | var port = e.ports[0]; |
| 1849 | workerCodeBody(port); |
| 1850 | port.start(); |
| 1851 | }; |
| 1852 | } |
| 1853 | |
| 1854 | /* c8 ignore stop */ |
| 1855 |
nothing calls this directly
no test coverage detected