File tree 2 files changed +0
-15
lines changed
2 files changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ var typeNames = []string{
24
24
"chanType" ,
25
25
"funcType" ,
26
26
"interfaceType" ,
27
- "mapType" ,
28
27
"ptrType" ,
29
28
"sliceType" ,
30
29
"structType" ,
Original file line number Diff line number Diff line change @@ -111,20 +111,6 @@ type funcType = abi.FuncType
111
111
112
112
type interfaceType = abi.InterfaceType
113
113
114
- // mapType represents a map type.
115
- type mapType struct {
116
- rtype
117
- Key * abi.Type // map key type
118
- Elem * abi.Type // map element (value) type
119
- Bucket * abi.Type // internal bucket structure
120
- // function for hashing keys (ptr to key, seed) -> hash
121
- Hasher func (unsafe.Pointer , uintptr ) uintptr
122
- KeySize uint8 // size of key slot
123
- ValueSize uint8 // size of value slot
124
- BucketSize uint16 // size of bucket
125
- Flags uint32
126
- }
127
-
128
114
// ptrType represents a pointer type.
129
115
type ptrType = abi.PtrType
130
116
You can’t perform that action at this time.
0 commit comments