type go/ast.MapType

20 uses

	go/ast (current package)
		ast.go#L452: 	MapType struct {
		ast.go#L499: func (x *MapType) Pos() token.Pos       { return x.Map }
		ast.go#L532: func (x *MapType) End() token.Pos       { return x.Value.End() }
		ast.go#L559: func (*MapType) exprNode()       {}
		filter.go#L175: 	case *MapType:
		walk.go#L174: 	case *MapType:

	go/doc
		exports.go#L188: 	case *ast.MapType:

	go/parser
		parser.go#L992: func (p *parser) parseMapType() *ast.MapType {
		parser.go#L1003: 	return &ast.MapType{Map: pos, Key: key, Value: value}
		parser.go#L1431: 	case *ast.MapType:

	go/printer
		nodes.go#L954: 	case *ast.MapType:

	golang.org/x/pkgsite/internal/godoc
		encode_ast.gen.go#L2322: func encode_ast_MapType(e *codec.Encoder, x *ast.MapType) {
		encode_ast.gen.go#L2341: func decode_ast_MapType(d *codec.Decoder, p **ast.MapType) {
		encode_ast.gen.go#L2347: 		*p = ref.(*ast.MapType)
		encode_ast.gen.go#L2350: 	var x ast.MapType
		encode_ast.gen.go#L2372: 	codec.Register(&ast.MapType{},
		encode_ast.gen.go#L2373: 		func(e *codec.Encoder, x interface{}) { encode_ast_MapType(e, x.(*ast.MapType)) },
		encode_ast.gen.go#L2375: 			var x *ast.MapType

	golang.org/x/pkgsite/internal/godoc/dochtml/internal/render
		synopsis.go#L138: 	case *ast.MapType:

	golang.org/x/pkgsite/internal/godoc/internal/doc
		exports.go#L188: 	case *ast.MapType: