Change-Id: Ib93f2b565e5271dfa3c3ca5d040ef24269c47cf8
GitHub-Last-Rev: 
3f1da518a404f5459e38f34427ae9177fe68f51e
GitHub-Pull-Request: golang/go#68584
Reviewed-on: https://go-review.googlesource.com/c/go/+/601036
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
 description, constructed from these types:
 
        type wireType struct {
-               ArrayT           *ArrayType
-               SliceT           *SliceType
-               StructT          *StructType
-               MapT             *MapType
+               ArrayT           *arrayType
+               SliceT           *sliceType
+               StructT          *structType
+               MapT             *mapType
                GobEncoderT      *gobEncoderType
                BinaryMarshalerT *gobEncoderType
                TextMarshalerT   *gobEncoderType
-
        }
        type arrayType struct {
                CommonType
        }
        type structType struct {
                CommonType
-               Field []*fieldType // the fields of the struct.
+               Field []fieldType // the fields of the struct.
        }
        type fieldType struct {
                Name string // the name of the field.