InternalImport represents an internal project file import (./, ../)
| 50 | |
| 51 | // InternalImport represents an internal project file import (./, ../) |
| 52 | type InternalImport struct { |
| 53 | path string |
| 54 | isTypeOnly bool |
| 55 | } |
| 56 | |
| 57 | func (i InternalImport) Path() string { |
| 58 | return i.path |
nothing calls this directly
no outgoing calls
no test coverage detected