@@ -80,6 +80,20 @@ const (
80
80
typeParamType
81
81
instanceType
82
82
unionType
83
+ aliasType
84
+ )
85
+
86
+ // Object tags
87
+ const (
88
+ varTag = 'V'
89
+ funcTag = 'F'
90
+ genericFuncTag = 'G'
91
+ constTag = 'C'
92
+ aliasTag = 'A'
93
+ genericAliasTag = 'B'
94
+ typeParamTag = 'P'
95
+ typeTag = 'T'
96
+ genericTypeTag = 'U'
83
97
)
84
98
85
99
// IImportData imports a package from the serialized package data
@@ -324,7 +338,7 @@ func iimportCommon(fset *token.FileSet, getPackages GetPackagesFunc, data []byte
324
338
}
325
339
326
340
// SetConstraint can't be called if the constraint type is not yet complete.
327
- // When type params are created in the 'P' case of (*importReader).obj(),
341
+ // When type params are created in the typeParamTag case of (*importReader).obj(),
328
342
// the associated constraint type may not be complete due to recursion.
329
343
// Therefore, we defer calling SetConstraint there, and call it here instead
330
344
// after all types are complete.
@@ -546,33 +560,37 @@ func (r *importReader) obj(name string) {
546
560
pos := r .pos ()
547
561
548
562
switch tag {
549
- case 'A' :
563
+ case aliasTag :
550
564
typ := r .typ ()
551
-
552
- r .declare (types .NewTypeName (pos , r .currPkg , name , typ ))
553
-
554
- case 'C' :
565
+ // TODO(adonovan): support generic aliases:
566
+ // if tag == genericAliasTag {
567
+ // tparams := r.tparamList()
568
+ // alias.SetTypeParams(tparams)
569
+ // }
570
+ r .declare (aliases .NewAlias (pos , r .currPkg , name , typ ))
571
+
572
+ case constTag :
555
573
typ , val := r .value ()
556
574
557
575
r .declare (types .NewConst (pos , r .currPkg , name , typ , val ))
558
576
559
- case 'F' , 'G' :
577
+ case funcTag , genericFuncTag :
560
578
var tparams []* types.TypeParam
561
- if tag == 'G' {
579
+ if tag == genericFuncTag {
562
580
tparams = r .tparamList ()
563
581
}
564
582
sig := r .signature (nil , nil , tparams )
565
583
r .declare (types .NewFunc (pos , r .currPkg , name , sig ))
566
584
567
- case 'T' , 'U' :
585
+ case typeTag , genericTypeTag :
568
586
// Types can be recursive. We need to setup a stub
569
587
// declaration before recursing.
570
588
obj := types .NewTypeName (pos , r .currPkg , name , nil )
571
589
named := types .NewNamed (obj , nil , nil )
572
590
// Declare obj before calling r.tparamList, so the new type name is recognized
573
591
// if used in the constraint of one of its own typeparams (see #48280).
574
592
r .declare (obj )
575
- if tag == 'U' {
593
+ if tag == genericTypeTag {
576
594
tparams := r .tparamList ()
577
595
named .SetTypeParams (tparams )
578
596
}
@@ -604,7 +622,7 @@ func (r *importReader) obj(name string) {
604
622
}
605
623
}
606
624
607
- case 'P' :
625
+ case typeParamTag :
608
626
// We need to "declare" a typeparam in order to have a name that
609
627
// can be referenced recursively (if needed) in the type param's
610
628
// bound.
@@ -637,7 +655,7 @@ func (r *importReader) obj(name string) {
637
655
// completely set up all types in ImportData.
638
656
r .p .later = append (r .p .later , setConstraintArgs {t : t , constraint : constraint })
639
657
640
- case 'V' :
658
+ case varTag :
641
659
typ := r .typ ()
642
660
643
661
r .declare (types .NewVar (pos , r .currPkg , name , typ ))
@@ -854,7 +872,7 @@ func (r *importReader) doType(base *types.Named) (res types.Type) {
854
872
errorf ("unexpected kind tag in %q: %v" , r .p .ipath , k )
855
873
return nil
856
874
857
- case definedType :
875
+ case aliasType , definedType :
858
876
pkg , name := r .qualifiedIdent ()
859
877
r .p .doDecl (pkg , name )
860
878
return pkg .Scope ().Lookup (name ).(* types.TypeName ).Type ()
0 commit comments