type go/ast.MapType

18 uses

	go/ast (current package)
		ast.go#L475: 	MapType struct {
		ast.go#L523: func (x *MapType) Pos() token.Pos       { return x.Map }
		ast.go#L557: func (x *MapType) End() token.Pos       { return x.Value.End() }
		ast.go#L584: func (*MapType) exprNode()       {}
		filter.go#L172: 	case *MapType:
		walk.go#L161: 	case *MapType:

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

	go/parser
		parser.go#L1286: func (p *parser) parseMapType() *ast.MapType {
		parser.go#L1297: 	return &ast.MapType{Map: pos, Key: key, Value: value}
		parser.go#L1756: 			case *ast.ArrayType, *ast.StructType, *ast.MapType:
		parser.go#L2721: 	case *ast.ArrayType, *ast.StructType, *ast.FuncType, *ast.InterfaceType, *ast.MapType, *ast.ChanType:

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

	go/types
		expr.go#L250: 		*ast.MapType,
		expr.go#L1141: 		*ast.InterfaceType, *ast.MapType, *ast.ChanType:
		exprstring.go#L149: 	case *ast.MapType:
		typexpr.go#L362: 	case *ast.MapType:

	golang.org/x/tools/internal/typesinternal
		zerovalue.go#L255: 		return &ast.MapType{