kubernetes/vendor/k8s.io/gengo/v2/namer/import_tracker.go

type DefaultImportTracker

func NewDefaultImportTracker(local types.Name) DefaultImportTracker {}

func (tracker *DefaultImportTracker) AddTypes(types ...*types.Type) {}

func (tracker *DefaultImportTracker) AddSymbol(symbol types.Name) {}

func (tracker *DefaultImportTracker) AddType(t *types.Type) {}

func (tracker *DefaultImportTracker) ImportLines() []string {}

// LocalNameOf returns the name you would use to refer to the package at the
// specified path within the body of a file.
func (tracker *DefaultImportTracker) LocalNameOf(path string) string {}

// PathOf returns the path that a given localName is referring to within the
// body of a file.
func (tracker *DefaultImportTracker) PathOf(localName string) (string, bool) {}