| 130 | } |
| 131 | |
| 132 | type importerWithHistory struct { |
| 133 | i MemoryImporter |
| 134 | history []importHistoryEntry |
| 135 | } |
| 136 | |
| 137 | func (importer *importerWithHistory) Import(importedFrom, importedPath string) (contents Contents, foundAt string, err error) { |
| 138 | importer.history = append(importer.history, importHistoryEntry{importedFrom, importedPath}) |
nothing calls this directly
no outgoing calls
no test coverage detected