type go/ast.MapType
18 uses
go/ast (current package)
ast.go#L479: MapType struct {
ast.go#L527: func (x *MapType) Pos() token.Pos { return x.Map }
ast.go#L561: func (x *MapType) End() token.Pos { return x.Value.End() }
ast.go#L588: func (*MapType) exprNode() {}
filter.go#L175: case *MapType:
walk.go#L161: case *MapType:
go/doc
exports.go#L201: case *ast.MapType:
go/parser
parser.go#L1316: func (p *parser) parseMapType() *ast.MapType {
parser.go#L1327: return &ast.MapType{Map: pos, Key: key, Value: value}
parser.go#L1786: case *ast.ArrayType, *ast.StructType, *ast.MapType:
parser.go#L2749: 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#L280: *ast.MapType,
expr.go#L1166: *ast.InterfaceType, *ast.MapType, *ast.ChanType:
exprstring.go#L149: case *ast.MapType:
typexpr.go#L360: case *ast.MapType:
golang.org/x/tools/internal/typesinternal
zerovalue.go#L255: return &ast.MapType{