パッケージ google.golang.org/appengine/cmd/aefix(v1.6.8)

Type

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
}

Type は、型のフィールドとメソッドを記述します。目的のフィールドやメソッドが見つからなかった場合は、埋め込みリストで検索されます。

TypeConfig

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