type go/ast.MapType

17 uses

	go/ast (current package)
		ast.go#L465: 	MapType struct {
		ast.go#L513: func (x *MapType) Pos() token.Pos       { return x.Map }
		ast.go#L547: func (x *MapType) End() token.Pos       { return x.Value.End() }
		ast.go#L575: func (*MapType) exprNode()       {}
		filter.go#L175: 	case *MapType:
		walk.go#L185: 	case *MapType:

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

	go/parser
		parser.go#L1182: func (p *parser) parseMapType() *ast.MapType {
		parser.go#L1193: 	return &ast.MapType{Map: pos, Key: key, Value: value}
		parser.go#L1710: 			case *ast.ArrayType, *ast.StructType, *ast.MapType:
		parser.go#L2713: 	case *ast.ArrayType, *ast.StructType, *ast.FuncType, *ast.InterfaceType, *ast.MapType, *ast.ChanType:

	go/printer
		nodes.go#L408: 	case *ast.ArrayType, *ast.StructType, *ast.FuncType, *ast.InterfaceType, *ast.MapType, *ast.ChanType:
		nodes.go#L1015: 	case *ast.MapType:

	go/types
		expr.go#L499: 		*ast.MapType,
		expr.go#L1636: 		*ast.InterfaceType, *ast.MapType, *ast.ChanType:
		exprstring.go#L147: 	case *ast.MapType:
		typexpr.go#L338: 	case *ast.MapType: