google.golang.org/appengine/cmd/aefix 패키지(v1.6.8)

유형

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은 유형의 필드 및 메서드를 설명합니다. 여기에서 필드 또는 메서드를 찾을 수 없으면 다음으로 Embed 목록에서 찾습니다.

TypeConfig

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