()
| 72 | |
| 73 | function registerDiagnosticChannels(listenerPairs) { |
| 74 | function enable() { |
| 75 | ArrayPrototypeForEach(listenerPairs, ({ 0: channel, 1: listener }) => { |
| 76 | dc.subscribe(channel, listener); |
| 77 | }); |
| 78 | } |
| 79 | |
| 80 | function disable() { |
| 81 | ArrayPrototypeForEach(listenerPairs, ({ 0: channel, 1: listener }) => { |
nothing calls this directly
no test coverage detected
searching dependent graphs…