go/ast.MapType.Map (field)

6 uses

	go/ast (current package)
		ast.go#L453: 		Map   token.Pos // position of "map" keyword
		ast.go#L499: func (x *MapType) Pos() token.Pos       { return x.Map }

	go/parser
		parser.go#L1003: 	return &ast.MapType{Map: pos, Key: key, Value: value}

	golang.org/x/pkgsite/internal/godoc
		encode_ast.gen.go#L2326: 	if x.Map != 0 {
		encode_ast.gen.go#L2328: 		e.EncodeInt(int64(x.Map))
		encode_ast.gen.go#L2359: 			x.Map = token.Pos(d.DecodeInt())