Pacote google.golang.org/appengine/cmd/aefix (v1.6.8)

Tipo

type Type struct {
	Field  map[string]string // map field name to type
	Method map[string]string // map method name to comma-separated return types (should start with "func ")
	Embed  []string          // list of types this type embeds (for extra methods)
	Def    string            // definition of named type
}

O campo Tipo descreve os campos e métodos de um tipo. Se o campo ou o método não puder ser encontrado aí, ele será procurado na lista Incorporar.

TipoConfig

type TypeConfig struct {
	Type map[string]*Type
	Var  map[string]string
	Func map[string]string
}