| 16 | ) |
| 17 | |
| 18 | type testSymbolLoader struct { |
| 19 | openCalls int |
| 20 | lookups map[string]*testSymbolLookup |
| 21 | } |
| 22 | |
| 23 | func newTestSymbolLoader() *testSymbolLoader { |
| 24 | return &testSymbolLoader{lookups: make(map[string]*testSymbolLookup)} |
nothing calls this directly
no outgoing calls
no test coverage detected