Source file
src/go/types/typexpr.go
1
2
3
4
5
6
7 package types
8
9 import (
10 "fmt"
11 "go/ast"
12 "go/constant"
13 "go/internal/typeparams"
14 "strings"
15 )
16
17
18
19
20
21
22 func (check *Checker) ident(x *operand, e *ast.Ident, def *Named, wantType bool) {
23 x.mode = invalid
24 x.expr = e
25
26
27
28 scope, obj := check.scope.LookupParent(e.Name, check.pos)
29 switch obj {
30 case nil:
31 if e.Name == "_" {
32
33
34
35 if tpar := check.recvTParamMap[e]; tpar != nil {
36 x.mode = typexpr
37 x.typ = tpar
38 } else {
39 check.error(e, _InvalidBlank, "cannot use _ as value or type")
40 }
41 } else {
42 check.errorf(e, _UndeclaredName, "undeclared name: %s", e.Name)
43 }
44 return
45 case universeAny, universeComparable:
46 if !check.allowVersion(check.pkg, 1, 18) {
47 check.errorf(e, _UndeclaredName, "undeclared name: %s (requires version go1.18 or later)", e.Name)
48 return
49 }
50 }
51 check.recordUse(e, obj)
52
53
54
55
56
57
58
59
60
61 typ := obj.Type()
62 if _, gotType := obj.(*TypeName); typ == nil || gotType && wantType {
63 check.objDecl(obj, def)
64 typ = obj.Type()
65 }
66 assert(typ != nil)
67
68
69
70
71
72 if pkgName := check.dotImportMap[dotImportKey{scope, obj.Name()}]; pkgName != nil {
73 pkgName.used = true
74 }
75
76 switch obj := obj.(type) {
77 case *PkgName:
78 check.errorf(e, _InvalidPkgUse, "use of package %s not in selector", obj.name)
79 return
80
81 case *Const:
82 check.addDeclDep(obj)
83 if typ == Typ[Invalid] {
84 return
85 }
86 if obj == universeIota {
87 if check.iota == nil {
88 check.errorf(e, _InvalidIota, "cannot use iota outside constant declaration")
89 return
90 }
91 x.val = check.iota
92 } else {
93 x.val = obj.val
94 }
95 assert(x.val != nil)
96 x.mode = constant_
97
98 case *TypeName:
99 if check.isBrokenAlias(obj) {
100 check.errorf(e, _InvalidDeclCycle, "invalid use of type alias %s in recursive type (see issue #50729)", obj.name)
101 return
102 }
103 x.mode = typexpr
104
105 case *Var:
106
107
108
109 if obj.pkg == check.pkg {
110 obj.used = true
111 }
112 check.addDeclDep(obj)
113 if typ == Typ[Invalid] {
114 return
115 }
116 x.mode = variable
117
118 case *Func:
119 check.addDeclDep(obj)
120 x.mode = value
121
122 case *Builtin:
123 x.id = obj.id
124 x.mode = builtin
125
126 case *Nil:
127 x.mode = value
128
129 default:
130 unreachable()
131 }
132
133 x.typ = typ
134 }
135
136
137
138 func (check *Checker) typ(e ast.Expr) Type {
139 return check.definedType(e, nil)
140 }
141
142
143
144
145 func (check *Checker) varType(e ast.Expr) Type {
146 typ := check.definedType(e, nil)
147 check.validVarType(e, typ)
148 return typ
149 }
150
151
152
153 func (check *Checker) validVarType(e ast.Expr, typ Type) {
154
155 if isTypeParam(typ) {
156 return
157 }
158
159
160
161
162 check.later(func() {
163 if t, _ := under(typ).(*Interface); t != nil {
164 tset := computeInterfaceTypeSet(check, e.Pos(), t)
165 if !tset.IsMethodSet() {
166 if tset.comparable {
167 check.softErrorf(e, _MisplacedConstraintIface, "interface is (or embeds) comparable")
168 } else {
169 check.softErrorf(e, _MisplacedConstraintIface, "interface contains type constraints")
170 }
171 }
172 }
173 })
174 }
175
176
177
178
179
180
181 func (check *Checker) definedType(e ast.Expr, def *Named) Type {
182 typ := check.typInternal(e, def)
183 assert(isTyped(typ))
184 if isGeneric(typ) {
185 check.errorf(e, _WrongTypeArgCount, "cannot use generic type %s without instantiation", typ)
186 typ = Typ[Invalid]
187 }
188 check.recordTypeAndValue(e, typexpr, typ, nil)
189 return typ
190 }
191
192
193
194
195 func (check *Checker) genericType(e ast.Expr, reason *string) Type {
196 typ := check.typInternal(e, nil)
197 assert(isTyped(typ))
198 if typ != Typ[Invalid] && !isGeneric(typ) {
199 if reason != nil {
200 *reason = check.sprintf("%s is not a generic type", typ)
201 }
202 typ = Typ[Invalid]
203 }
204
205 check.recordTypeAndValue(e, typexpr, typ, nil)
206 return typ
207 }
208
209
210
211 func goTypeName(typ Type) string {
212 return strings.ReplaceAll(fmt.Sprintf("%T", typ), "types.", "")
213 }
214
215
216
217
218 func (check *Checker) typInternal(e0 ast.Expr, def *Named) (T Type) {
219 if trace {
220 check.trace(e0.Pos(), "-- type %s", e0)
221 check.indent++
222 defer func() {
223 check.indent--
224 var under Type
225 if T != nil {
226
227
228 under = safeUnderlying(T)
229 }
230 if T == under {
231 check.trace(e0.Pos(), "=> %s // %s", T, goTypeName(T))
232 } else {
233 check.trace(e0.Pos(), "=> %s (under = %s) // %s", T, under, goTypeName(T))
234 }
235 }()
236 }
237
238 switch e := e0.(type) {
239 case *ast.BadExpr:
240
241
242 case *ast.Ident:
243 var x operand
244 check.ident(&x, e, def, true)
245
246 switch x.mode {
247 case typexpr:
248 typ := x.typ
249 def.setUnderlying(typ)
250 return typ
251 case invalid:
252
253 case novalue:
254 check.errorf(&x, _NotAType, "%s used as type", &x)
255 default:
256 check.errorf(&x, _NotAType, "%s is not a type", &x)
257 }
258
259 case *ast.SelectorExpr:
260 var x operand
261 check.selector(&x, e, def)
262
263 switch x.mode {
264 case typexpr:
265 typ := x.typ
266 def.setUnderlying(typ)
267 return typ
268 case invalid:
269
270 case novalue:
271 check.errorf(&x, _NotAType, "%s used as type", &x)
272 default:
273 check.errorf(&x, _NotAType, "%s is not a type", &x)
274 }
275
276 case *ast.IndexExpr, *ast.IndexListExpr:
277 ix := typeparams.UnpackIndexExpr(e)
278 if !check.allowVersion(check.pkg, 1, 18) {
279 check.softErrorf(inNode(e, ix.Lbrack), _UnsupportedFeature, "type instantiation requires go1.18 or later")
280 }
281 return check.instantiatedType(ix, def)
282
283 case *ast.ParenExpr:
284
285
286 return check.definedType(e.X, def)
287
288 case *ast.ArrayType:
289 if e.Len == nil {
290 typ := new(Slice)
291 def.setUnderlying(typ)
292 typ.elem = check.varType(e.Elt)
293 return typ
294 }
295
296 typ := new(Array)
297 def.setUnderlying(typ)
298 typ.len = check.arrayLength(e.Len)
299 typ.elem = check.varType(e.Elt)
300 if typ.len >= 0 {
301 return typ
302 }
303
304 case *ast.Ellipsis:
305
306
307 check.error(e, _InvalidDotDotDot, "invalid use of '...'")
308 check.use(e.Elt)
309
310 case *ast.StructType:
311 typ := new(Struct)
312 def.setUnderlying(typ)
313 check.structType(typ, e)
314 return typ
315
316 case *ast.StarExpr:
317 typ := new(Pointer)
318 typ.base = Typ[Invalid]
319 def.setUnderlying(typ)
320 typ.base = check.varType(e.X)
321 return typ
322
323 case *ast.FuncType:
324 typ := new(Signature)
325 def.setUnderlying(typ)
326 check.funcType(typ, nil, e)
327 return typ
328
329 case *ast.InterfaceType:
330 typ := check.newInterface()
331 def.setUnderlying(typ)
332 if def != nil {
333 typ.obj = def.obj
334 }
335 check.interfaceType(typ, e, def)
336 return typ
337
338 case *ast.MapType:
339 typ := new(Map)
340 def.setUnderlying(typ)
341
342 typ.key = check.varType(e.Key)
343 typ.elem = check.varType(e.Value)
344
345
346
347
348
349
350
351 check.later(func() {
352 if !Comparable(typ.key) {
353 var why string
354 if isTypeParam(typ.key) {
355 why = " (missing comparable constraint)"
356 }
357 check.errorf(e.Key, _IncomparableMapKey, "incomparable map key type %s%s", typ.key, why)
358 }
359 })
360
361 return typ
362
363 case *ast.ChanType:
364 typ := new(Chan)
365 def.setUnderlying(typ)
366
367 dir := SendRecv
368 switch e.Dir {
369 case ast.SEND | ast.RECV:
370
371 case ast.SEND:
372 dir = SendOnly
373 case ast.RECV:
374 dir = RecvOnly
375 default:
376 check.invalidAST(e, "unknown channel direction %d", e.Dir)
377
378 }
379
380 typ.dir = dir
381 typ.elem = check.varType(e.Value)
382 return typ
383
384 default:
385 check.errorf(e0, _NotAType, "%s is not a type", e0)
386 }
387
388 typ := Typ[Invalid]
389 def.setUnderlying(typ)
390 return typ
391 }
392
393 func (check *Checker) instantiatedType(ix *typeparams.IndexExpr, def *Named) (res Type) {
394 pos := ix.X.Pos()
395 if trace {
396 check.trace(pos, "-- instantiating %s with %s", ix.X, ix.Indices)
397 check.indent++
398 defer func() {
399 check.indent--
400
401 check.trace(pos, "=> %s", res)
402 }()
403 }
404
405 var reason string
406 gtyp := check.genericType(ix.X, &reason)
407 if reason != "" {
408 check.invalidOp(ix.Orig, _NotAGenericType, "%s (%s)", ix.Orig, reason)
409 }
410 if gtyp == Typ[Invalid] {
411 return gtyp
412 }
413
414 orig, _ := gtyp.(*Named)
415 if orig == nil {
416 panic(fmt.Sprintf("%v: cannot instantiate %v", ix.Pos(), gtyp))
417 }
418
419
420 targs := check.typeList(ix.Indices)
421 if targs == nil {
422 def.setUnderlying(Typ[Invalid])
423 return Typ[Invalid]
424 }
425
426
427
428 const enableTypeTypeInference = false
429
430
431 ctxt := check.bestContext(nil)
432 h := ctxt.instanceHash(orig, targs)
433
434 inst, _ := ctxt.lookup(h, orig, targs).(*Named)
435
436
437
438
439 if inst == nil {
440
441 tname := NewTypeName(ix.Pos(), orig.obj.pkg, orig.obj.name, nil)
442 inst = check.newNamed(tname, orig, nil, nil, nil)
443 inst.targs = newTypeList(targs)
444 inst = ctxt.update(h, orig, targs, inst).(*Named)
445 }
446 def.setUnderlying(inst)
447
448 inst.resolver = func(ctxt *Context, n *Named) (*TypeParamList, Type, *methodList) {
449 tparams := n.orig.TypeParams().list()
450
451 targs := n.targs.list()
452 if enableTypeTypeInference && len(targs) < len(tparams) {
453
454
455 inferred := check.infer(ix.Orig, tparams, targs, nil, nil)
456 if len(inferred) > len(targs) {
457 n.targs = newTypeList(inferred)
458 }
459 }
460
461 return expandNamed(ctxt, n, pos)
462 }
463
464
465 check.later(func() {
466
467
468
469 inst.resolve(ctxt)
470
471
472 inst.resolver = nil
473 check.recordInstance(ix.Orig, inst.TypeArgs().list(), inst)
474
475 if check.validateTArgLen(pos, inst.tparams.Len(), inst.targs.Len()) {
476 if i, err := check.verify(pos, inst.tparams.list(), inst.targs.list()); err != nil {
477
478 pos := ix.Pos()
479 if i < len(ix.Indices) {
480 pos = ix.Indices[i].Pos()
481 }
482 check.softErrorf(atPos(pos), _InvalidTypeArg, err.Error())
483 } else {
484 check.mono.recordInstance(check.pkg, pos, inst.tparams.list(), inst.targs.list(), ix.Indices)
485 }
486 }
487
488 check.validType(inst)
489 })
490
491 return inst
492 }
493
494
495
496
497 func (check *Checker) arrayLength(e ast.Expr) int64 {
498
499
500
501
502 if name, _ := e.(*ast.Ident); name != nil {
503 obj := check.lookup(name.Name)
504 if obj == nil {
505 check.errorf(name, _InvalidArrayLen, "undeclared name %s for array length", name.Name)
506 return -1
507 }
508 if _, ok := obj.(*Const); !ok {
509 check.errorf(name, _InvalidArrayLen, "invalid array length %s", name.Name)
510 return -1
511 }
512 }
513
514 var x operand
515 check.expr(&x, e)
516 if x.mode != constant_ {
517 if x.mode != invalid {
518 check.errorf(&x, _InvalidArrayLen, "array length %s must be constant", &x)
519 }
520 return -1
521 }
522
523 if isUntyped(x.typ) || isInteger(x.typ) {
524 if val := constant.ToInt(x.val); val.Kind() == constant.Int {
525 if representableConst(val, check, Typ[Int], nil) {
526 if n, ok := constant.Int64Val(val); ok && n >= 0 {
527 return n
528 }
529 check.errorf(&x, _InvalidArrayLen, "invalid array length %s", &x)
530 return -1
531 }
532 }
533 }
534
535 check.errorf(&x, _InvalidArrayLen, "array length %s must be integer", &x)
536 return -1
537 }
538
539
540
541 func (check *Checker) typeList(list []ast.Expr) []Type {
542 res := make([]Type, len(list))
543 for i, x := range list {
544 t := check.varType(x)
545 if t == Typ[Invalid] {
546 res = nil
547 }
548 if res != nil {
549 res[i] = t
550 }
551 }
552 return res
553 }
554
View as plain text