Notice: Over the next few months, we're reorganizing the App Engine documentation site to make it easier to find content and better align with the rest of Google Cloud products. The same content will be available, but the navigation will now match the rest of the Cloud products. If you have feedback or questions as you navigate the site, click Send Feedback.

Package google.golang.org/appengine/cmd/aefix (v1.6.7)

Stay organized with collections Save and categorize content based on your preferences.

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 describes the Fields and Methods of a type. If the field or method cannot be found there, it is next looked for in the Embed list.

TypeConfig

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