| 1143 | func (c *capturePluginClient) Shutdown() {} |
| 1144 | |
| 1145 | type blockingOpenLoader struct { |
| 1146 | inner *testSymbolLoader |
| 1147 | started chan struct{} |
| 1148 | release <-chan struct{} |
| 1149 | startOnce sync.Once |
| 1150 | } |
| 1151 | |
| 1152 | func (l *blockingOpenLoader) Open(file pluginFile, host *Host) (pluginClient, error) { |
| 1153 | l.startOnce.Do(func() { close(l.started) }) |
nothing calls this directly
no outgoing calls
no test coverage detected