]> Cypherpunks.ru repositories - gostls13.git/blob - src/go/types/typexpr.go
go/types: provide a better error message for [...] array types
[gostls13.git] / src / go / types / typexpr.go
1 // Copyright 2013 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 // This file implements type-checking of identifiers and type expressions.
6
7 package types
8
9 import (
10         "fmt"
11         "go/ast"
12         "go/constant"
13         "go/internal/typeparams"
14         "strings"
15 )
16
17 // ident type-checks identifier e and initializes x with the value or type of e.
18 // If an error occurred, x.mode is set to invalid.
19 // For the meaning of def, see Checker.definedType, below.
20 // If wantType is set, the identifier e is expected to denote a type.
21 func (check *Checker) ident(x *operand, e *ast.Ident, def *Named, wantType bool) {
22         x.mode = invalid
23         x.expr = e
24
25         // Note that we cannot use check.lookup here because the returned scope
26         // may be different from obj.Parent(). See also Scope.LookupParent doc.
27         scope, obj := check.scope.LookupParent(e.Name, check.pos)
28         switch obj {
29         case nil:
30                 if e.Name == "_" {
31                         // Blank identifiers are never declared, but the current identifier may
32                         // be a placeholder for a receiver type parameter. In this case we can
33                         // resolve its type and object from Checker.recvTParamMap.
34                         if tpar := check.recvTParamMap[e]; tpar != nil {
35                                 x.mode = typexpr
36                                 x.typ = tpar
37                         } else {
38                                 check.error(e, _InvalidBlank, "cannot use _ as value or type")
39                         }
40                 } else {
41                         check.errorf(e, _UndeclaredName, "undeclared name: %s", e.Name)
42                 }
43                 return
44         case universeAny, universeComparable:
45                 if !check.allowVersion(check.pkg, 1, 18) {
46                         check.versionErrorf(e, _UndeclaredName, "go1.18", "predeclared %s", e.Name)
47                         return // avoid follow-on errors
48                 }
49         }
50         check.recordUse(e, obj)
51
52         // Type-check the object.
53         // Only call Checker.objDecl if the object doesn't have a type yet
54         // (in which case we must actually determine it) or the object is a
55         // TypeName and we also want a type (in which case we might detect
56         // a cycle which needs to be reported). Otherwise we can skip the
57         // call and avoid a possible cycle error in favor of the more
58         // informative "not a type/value" error that this function's caller
59         // will issue (see issue #25790).
60         typ := obj.Type()
61         if _, gotType := obj.(*TypeName); typ == nil || gotType && wantType {
62                 check.objDecl(obj, def)
63                 typ = obj.Type() // type must have been assigned by Checker.objDecl
64         }
65         assert(typ != nil)
66
67         // The object may have been dot-imported.
68         // If so, mark the respective package as used.
69         // (This code is only needed for dot-imports. Without them,
70         // we only have to mark variables, see *Var case below).
71         if pkgName := check.dotImportMap[dotImportKey{scope, obj.Name()}]; pkgName != nil {
72                 pkgName.used = true
73         }
74
75         switch obj := obj.(type) {
76         case *PkgName:
77                 check.errorf(e, _InvalidPkgUse, "use of package %s not in selector", obj.name)
78                 return
79
80         case *Const:
81                 check.addDeclDep(obj)
82                 if typ == Typ[Invalid] {
83                         return
84                 }
85                 if obj == universeIota {
86                         if check.iota == nil {
87                                 check.errorf(e, _InvalidIota, "cannot use iota outside constant declaration")
88                                 return
89                         }
90                         x.val = check.iota
91                 } else {
92                         x.val = obj.val
93                 }
94                 assert(x.val != nil)
95                 x.mode = constant_
96
97         case *TypeName:
98                 if check.isBrokenAlias(obj) {
99                         check.errorf(e, _InvalidDeclCycle, "invalid use of type alias %s in recursive type (see issue #50729)", obj.name)
100                         return
101                 }
102                 x.mode = typexpr
103
104         case *Var:
105                 // It's ok to mark non-local variables, but ignore variables
106                 // from other packages to avoid potential race conditions with
107                 // dot-imported variables.
108                 if obj.pkg == check.pkg {
109                         obj.used = true
110                 }
111                 check.addDeclDep(obj)
112                 if typ == Typ[Invalid] {
113                         return
114                 }
115                 x.mode = variable
116
117         case *Func:
118                 check.addDeclDep(obj)
119                 x.mode = value
120
121         case *Builtin:
122                 x.id = obj.id
123                 x.mode = builtin
124
125         case *Nil:
126                 x.mode = value
127
128         default:
129                 unreachable()
130         }
131
132         x.typ = typ
133 }
134
135 // typ type-checks the type expression e and returns its type, or Typ[Invalid].
136 // The type must not be an (uninstantiated) generic type.
137 func (check *Checker) typ(e ast.Expr) Type {
138         return check.definedType(e, nil)
139 }
140
141 // varType type-checks the type expression e and returns its type, or Typ[Invalid].
142 // The type must not be an (uninstantiated) generic type and it must not be a
143 // constraint interface.
144 func (check *Checker) varType(e ast.Expr) Type {
145         typ := check.definedType(e, nil)
146         check.validVarType(e, typ)
147         return typ
148 }
149
150 // validVarType reports an error if typ is a constraint interface.
151 // The expression e is used for error reporting, if any.
152 func (check *Checker) validVarType(e ast.Expr, typ Type) {
153         // If we have a type parameter there's nothing to do.
154         if isTypeParam(typ) {
155                 return
156         }
157
158         // We don't want to call under() or complete interfaces while we are in
159         // the middle of type-checking parameter declarations that might belong
160         // to interface methods. Delay this check to the end of type-checking.
161         check.later(func() {
162                 if t, _ := under(typ).(*Interface); t != nil {
163                         tset := computeInterfaceTypeSet(check, e.Pos(), t) // TODO(gri) is this the correct position?
164                         if !tset.IsMethodSet() {
165                                 if tset.comparable {
166                                         check.softErrorf(e, _MisplacedConstraintIface, "cannot use type %s outside a type constraint: interface is (or embeds) comparable", typ)
167                                 } else {
168                                         check.softErrorf(e, _MisplacedConstraintIface, "cannot use type %s outside a type constraint: interface contains type constraints", typ)
169                                 }
170                         }
171                 }
172         }).describef(e, "check var type %s", typ)
173 }
174
175 // definedType is like typ but also accepts a type name def.
176 // If def != nil, e is the type specification for the defined type def, declared
177 // in a type declaration, and def.underlying will be set to the type of e before
178 // any components of e are type-checked.
179 func (check *Checker) definedType(e ast.Expr, def *Named) Type {
180         typ := check.typInternal(e, def)
181         assert(isTyped(typ))
182         if isGeneric(typ) {
183                 check.errorf(e, _WrongTypeArgCount, "cannot use generic type %s without instantiation", typ)
184                 typ = Typ[Invalid]
185         }
186         check.recordTypeAndValue(e, typexpr, typ, nil)
187         return typ
188 }
189
190 // genericType is like typ but the type must be an (uninstantiated) generic
191 // type. If reason is non-nil and the type expression was a valid type but not
192 // generic, reason will be populated with a message describing the error.
193 func (check *Checker) genericType(e ast.Expr, reason *string) Type {
194         typ := check.typInternal(e, nil)
195         assert(isTyped(typ))
196         if typ != Typ[Invalid] && !isGeneric(typ) {
197                 if reason != nil {
198                         *reason = check.sprintf("%s is not a generic type", typ)
199                 }
200                 typ = Typ[Invalid]
201         }
202         // TODO(gri) what is the correct call below?
203         check.recordTypeAndValue(e, typexpr, typ, nil)
204         return typ
205 }
206
207 // goTypeName returns the Go type name for typ and
208 // removes any occurrences of "types." from that name.
209 func goTypeName(typ Type) string {
210         return strings.ReplaceAll(fmt.Sprintf("%T", typ), "types.", "")
211 }
212
213 // typInternal drives type checking of types.
214 // Must only be called by definedType or genericType.
215 func (check *Checker) typInternal(e0 ast.Expr, def *Named) (T Type) {
216         if trace {
217                 check.trace(e0.Pos(), "-- type %s", e0)
218                 check.indent++
219                 defer func() {
220                         check.indent--
221                         var under Type
222                         if T != nil {
223                                 // Calling under() here may lead to endless instantiations.
224                                 // Test case: type T[P any] *T[P]
225                                 under = safeUnderlying(T)
226                         }
227                         if T == under {
228                                 check.trace(e0.Pos(), "=> %s // %s", T, goTypeName(T))
229                         } else {
230                                 check.trace(e0.Pos(), "=> %s (under = %s) // %s", T, under, goTypeName(T))
231                         }
232                 }()
233         }
234
235         switch e := e0.(type) {
236         case *ast.BadExpr:
237                 // ignore - error reported before
238
239         case *ast.Ident:
240                 var x operand
241                 check.ident(&x, e, def, true)
242
243                 switch x.mode {
244                 case typexpr:
245                         typ := x.typ
246                         def.setUnderlying(typ)
247                         return typ
248                 case invalid:
249                         // ignore - error reported before
250                 case novalue:
251                         check.errorf(&x, _NotAType, "%s used as type", &x)
252                 default:
253                         check.errorf(&x, _NotAType, "%s is not a type", &x)
254                 }
255
256         case *ast.SelectorExpr:
257                 var x operand
258                 check.selector(&x, e, def)
259
260                 switch x.mode {
261                 case typexpr:
262                         typ := x.typ
263                         def.setUnderlying(typ)
264                         return typ
265                 case invalid:
266                         // ignore - error reported before
267                 case novalue:
268                         check.errorf(&x, _NotAType, "%s used as type", &x)
269                 default:
270                         check.errorf(&x, _NotAType, "%s is not a type", &x)
271                 }
272
273         case *ast.IndexExpr, *ast.IndexListExpr:
274                 ix := typeparams.UnpackIndexExpr(e)
275                 if !check.allowVersion(check.pkg, 1, 18) {
276                         check.softErrorf(inNode(e, ix.Lbrack), _UnsupportedFeature, "type instantiation requires go1.18 or later")
277                 }
278                 return check.instantiatedType(ix, def)
279
280         case *ast.ParenExpr:
281                 // Generic types must be instantiated before they can be used in any form.
282                 // Consequently, generic types cannot be parenthesized.
283                 return check.definedType(e.X, def)
284
285         case *ast.ArrayType:
286                 if e.Len == nil {
287                         typ := new(Slice)
288                         def.setUnderlying(typ)
289                         typ.elem = check.varType(e.Elt)
290                         return typ
291                 }
292
293                 typ := new(Array)
294                 def.setUnderlying(typ)
295                 // Provide a more specific error when encountering a [...] array
296                 // rather than leaving it to the handling of the ... expression.
297                 if _, ok := e.Len.(*ast.Ellipsis); ok {
298                         check.error(e.Len, _BadDotDotDotSyntax, "invalid use of [...] array (outside a composite literal)")
299                         typ.len = -1
300                 } else {
301                         typ.len = check.arrayLength(e.Len)
302                 }
303                 typ.elem = check.varType(e.Elt)
304                 if typ.len >= 0 {
305                         return typ
306                 }
307                 // report error if we encountered [...]
308
309         case *ast.Ellipsis:
310                 // dots are handled explicitly where they are legal
311                 // (array composite literals and parameter lists)
312                 check.error(e, _InvalidDotDotDot, "invalid use of '...'")
313                 check.use(e.Elt)
314
315         case *ast.StructType:
316                 typ := new(Struct)
317                 def.setUnderlying(typ)
318                 check.structType(typ, e)
319                 return typ
320
321         case *ast.StarExpr:
322                 typ := new(Pointer)
323                 typ.base = Typ[Invalid] // avoid nil base in invalid recursive type declaration
324                 def.setUnderlying(typ)
325                 typ.base = check.varType(e.X)
326                 return typ
327
328         case *ast.FuncType:
329                 typ := new(Signature)
330                 def.setUnderlying(typ)
331                 check.funcType(typ, nil, e)
332                 return typ
333
334         case *ast.InterfaceType:
335                 typ := check.newInterface()
336                 def.setUnderlying(typ)
337                 check.interfaceType(typ, e, def)
338                 return typ
339
340         case *ast.MapType:
341                 typ := new(Map)
342                 def.setUnderlying(typ)
343
344                 typ.key = check.varType(e.Key)
345                 typ.elem = check.varType(e.Value)
346
347                 // spec: "The comparison operators == and != must be fully defined
348                 // for operands of the key type; thus the key type must not be a
349                 // function, map, or slice."
350                 //
351                 // Delay this check because it requires fully setup types;
352                 // it is safe to continue in any case (was issue 6667).
353                 check.later(func() {
354                         if !Comparable(typ.key) {
355                                 var why string
356                                 if isTypeParam(typ.key) {
357                                         why = " (missing comparable constraint)"
358                                 }
359                                 check.errorf(e.Key, _IncomparableMapKey, "invalid map key type %s%s", typ.key, why)
360                         }
361                 }).describef(e.Key, "check map key %s", typ.key)
362
363                 return typ
364
365         case *ast.ChanType:
366                 typ := new(Chan)
367                 def.setUnderlying(typ)
368
369                 dir := SendRecv
370                 switch e.Dir {
371                 case ast.SEND | ast.RECV:
372                         // nothing to do
373                 case ast.SEND:
374                         dir = SendOnly
375                 case ast.RECV:
376                         dir = RecvOnly
377                 default:
378                         check.invalidAST(e, "unknown channel direction %d", e.Dir)
379                         // ok to continue
380                 }
381
382                 typ.dir = dir
383                 typ.elem = check.varType(e.Value)
384                 return typ
385
386         default:
387                 check.errorf(e0, _NotAType, "%s is not a type", e0)
388                 check.use(e0)
389         }
390
391         typ := Typ[Invalid]
392         def.setUnderlying(typ)
393         return typ
394 }
395
396 func (check *Checker) instantiatedType(ix *typeparams.IndexExpr, def *Named) (res Type) {
397         if trace {
398                 check.trace(ix.Pos(), "-- instantiating type %s with %s", ix.X, ix.Indices)
399                 check.indent++
400                 defer func() {
401                         check.indent--
402                         // Don't format the underlying here. It will always be nil.
403                         check.trace(ix.Pos(), "=> %s", res)
404                 }()
405         }
406
407         var reason string
408         gtyp := check.genericType(ix.X, &reason)
409         if reason != "" {
410                 check.invalidOp(ix.Orig, _NotAGenericType, "%s (%s)", ix.Orig, reason)
411         }
412         if gtyp == Typ[Invalid] {
413                 return gtyp // error already reported
414         }
415
416         orig, _ := gtyp.(*Named)
417         if orig == nil {
418                 panic(fmt.Sprintf("%v: cannot instantiate %v", ix.Pos(), gtyp))
419         }
420
421         // evaluate arguments
422         targs := check.typeList(ix.Indices)
423         if targs == nil {
424                 def.setUnderlying(Typ[Invalid]) // avoid errors later due to lazy instantiation
425                 return Typ[Invalid]
426         }
427
428         // create the instance
429         inst := check.instance(ix.Pos(), orig, targs, nil, check.context()).(*Named)
430         def.setUnderlying(inst)
431
432         // orig.tparams may not be set up, so we need to do expansion later.
433         check.later(func() {
434                 // This is an instance from the source, not from recursive substitution,
435                 // and so it must be resolved during type-checking so that we can report
436                 // errors.
437                 check.recordInstance(ix.Orig, inst.TypeArgs().list(), inst)
438
439                 if check.validateTArgLen(ix.Pos(), inst.TypeParams().Len(), inst.TypeArgs().Len()) {
440                         if i, err := check.verify(ix.Pos(), inst.TypeParams().list(), inst.TypeArgs().list(), check.context()); err != nil {
441                                 // best position for error reporting
442                                 pos := ix.Pos()
443                                 if i < len(ix.Indices) {
444                                         pos = ix.Indices[i].Pos()
445                                 }
446                                 check.softErrorf(atPos(pos), _InvalidTypeArg, err.Error())
447                         } else {
448                                 check.mono.recordInstance(check.pkg, ix.Pos(), inst.TypeParams().list(), inst.TypeArgs().list(), ix.Indices)
449                         }
450                 }
451
452                 // TODO(rfindley): remove this call: we don't need to call validType here,
453                 // as cycles can only occur for types used inside a Named type declaration,
454                 // and so it suffices to call validType from declared types.
455                 check.validType(inst)
456         }).describef(ix, "resolve instance %s", inst)
457
458         return inst
459 }
460
461 // arrayLength type-checks the array length expression e
462 // and returns the constant length >= 0, or a value < 0
463 // to indicate an error (and thus an unknown length).
464 func (check *Checker) arrayLength(e ast.Expr) int64 {
465         // If e is an identifier, the array declaration might be an
466         // attempt at a parameterized type declaration with missing
467         // constraint. Provide an error message that mentions array
468         // length.
469         if name, _ := e.(*ast.Ident); name != nil {
470                 obj := check.lookup(name.Name)
471                 if obj == nil {
472                         check.errorf(name, _InvalidArrayLen, "undeclared name %s for array length", name.Name)
473                         return -1
474                 }
475                 if _, ok := obj.(*Const); !ok {
476                         check.errorf(name, _InvalidArrayLen, "invalid array length %s", name.Name)
477                         return -1
478                 }
479         }
480
481         var x operand
482         check.expr(&x, e)
483         if x.mode != constant_ {
484                 if x.mode != invalid {
485                         check.errorf(&x, _InvalidArrayLen, "array length %s must be constant", &x)
486                 }
487                 return -1
488         }
489
490         if isUntyped(x.typ) || isInteger(x.typ) {
491                 if val := constant.ToInt(x.val); val.Kind() == constant.Int {
492                         if representableConst(val, check, Typ[Int], nil) {
493                                 if n, ok := constant.Int64Val(val); ok && n >= 0 {
494                                         return n
495                                 }
496                                 check.errorf(&x, _InvalidArrayLen, "invalid array length %s", &x)
497                                 return -1
498                         }
499                 }
500         }
501
502         check.errorf(&x, _InvalidArrayLen, "array length %s must be integer", &x)
503         return -1
504 }
505
506 // typeList provides the list of types corresponding to the incoming expression list.
507 // If an error occurred, the result is nil, but all list elements were type-checked.
508 func (check *Checker) typeList(list []ast.Expr) []Type {
509         res := make([]Type, len(list)) // res != nil even if len(list) == 0
510         for i, x := range list {
511                 t := check.varType(x)
512                 if t == Typ[Invalid] {
513                         res = nil
514                 }
515                 if res != nil {
516                         res[i] = t
517                 }
518         }
519         return res
520 }