]> Cypherpunks repositories - gostls13.git/commitdiff
go/internal/gcimporter,cmd/compile: minor clean-up in iimport.go
authorRobert Findley <rfindley@google.com>
Wed, 15 Sep 2021 00:40:09 +0000 (20:40 -0400)
committerRobert Findley <rfindley@google.com>
Wed, 15 Sep 2021 09:43:00 +0000 (09:43 +0000)
Make two superficial fixes to iimport.go: rename instType to
instanceType (suggested in CL 349949), and fix a stale comment.

Done in both go/internal/gcimporter and cmd/compile/internal/importer.

Change-Id: Idfdda11a59b036a35824bbb1c101cba3652aeff4
Reviewed-on: https://go-review.googlesource.com/c/go/+/350031
Trust: Robert Findley <rfindley@google.com>
Run-TryBot: Robert Findley <rfindley@google.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Robert Griesemer <gri@golang.org>
src/cmd/compile/internal/importer/iimport.go
src/go/internal/gcimporter/iimport.go

index 7f7143dcfe7bd34145e8f88fa5e4eab302b08c81..a92720d52e2e9c0ad92c950864b97b814d14f039 100644 (file)
@@ -72,7 +72,7 @@ const (
        structType
        interfaceType
        typeParamType
-       instType
+       instanceType
        unionType
 )
 
@@ -646,7 +646,7 @@ func (r *importReader) doType(base *types2.Named) types2.Type {
                r.p.doDecl(pkg, name)
                return r.p.tparamIndex[id]
 
-       case instType:
+       case instanceType:
                if r.p.exportVersion < iexportVersionGenerics {
                        errorf("unexpected instantiation type")
                }
@@ -661,7 +661,7 @@ func (r *importReader) doType(base *types2.Named) types2.Type {
                baseType := r.typ()
                // The imported instantiated type doesn't include any methods, so
                // we must always use the methods of the base (orig) type.
-               // TODO provide a non-nil *Checker
+               // TODO provide a non-nil *Environment
                t, _ := types2.Instantiate(nil, baseType, targs, false)
                return t
 
index d9174d470b0487bfa00f8f6f85a94f6d1f40f37d..f570aab2bfbc9b69ae6cbe44113aac97532c1be5 100644 (file)
@@ -72,7 +72,7 @@ const (
        structType
        interfaceType
        typeParamType
-       instType
+       instanceType
        unionType
 )
 
@@ -638,7 +638,7 @@ func (r *importReader) doType(base *types.Named) types.Type {
                r.p.doDecl(pkg, name)
                return r.p.tparamIndex[id]
 
-       case instType:
+       case instanceType:
                if r.p.exportVersion < iexportVersionGenerics {
                        errorf("unexpected instantiation type")
                }
@@ -653,7 +653,7 @@ func (r *importReader) doType(base *types.Named) types.Type {
                baseType := r.typ()
                // The imported instantiated type doesn't include any methods, so
                // we must always use the methods of the base (orig) type.
-               // TODO provide a non-nil *Checker
+               // TODO provide a non-nil *Environment
                t, _ := types.Instantiate(nil, baseType, targs, false)
                return t