InternalImport represents a relative module import.
| 47 | |
| 48 | // InternalImport represents a relative module import. |
| 49 | type InternalImport struct { |
| 50 | path string |
| 51 | isTypeOnly bool |
| 52 | } |
| 53 | |
| 54 | func (i InternalImport) Path() string { |
| 55 | return i.path |
nothing calls this directly
no outgoing calls
no test coverage detected