@@ -78,6 +78,7 @@ trait CoreImpl extends scala.tasty.reflect.Core {
78
78
type ByName = tpd.ByNameTypeTree
79
79
type LambdaTypeTree = tpd.LambdaTypeTree
80
80
type Bind = tpd.Bind
81
+ type Block = tpd.Block
81
82
}
82
83
type TypeBoundsTree = tpd.TypeBoundsTree
83
84
type WildcardType = tpd.TypeTree
@@ -86,11 +87,26 @@ trait CoreImpl extends scala.tasty.reflect.Core {
86
87
type NoPrefix = Types .NoPrefix .type
87
88
type TypeBounds = Types .TypeBounds
88
89
type Type = Types .Type
89
- type RecursiveType = Types .RecType
90
- type LambdaType [ParamInfo ] = Types .LambdaType { type PInfo = ParamInfo }
91
- type MethodType = Types .MethodType
92
- type PolyType = Types .PolyType
93
- type TypeLambda = Types .TypeLambda
90
+ type ConstantType = Types .ConstantType
91
+ type SymRef = Types .NamedType
92
+ type TermRef = Types .NamedType
93
+ type TypeRef = Types .NamedType
94
+ type SuperType = Types .SuperType
95
+ type Refinement = Types .RefinedType
96
+ type AppliedType = Types .AppliedType
97
+ type AnnotatedType = Types .AnnotatedType
98
+ type AndType = Types .AndType
99
+ type OrType = Types .OrType
100
+ type MatchType = Types .MatchType
101
+ type ByNameType = Types .ExprType
102
+ type ParamRef = Types .ParamRef
103
+ type ThisType = Types .ThisType
104
+ type RecursiveThis = Types .RecThis
105
+ type RecursiveType = Types .RecType
106
+ type LambdaType [ParamInfo ] = Types .LambdaType { type PInfo = ParamInfo }
107
+ type MethodType = Types .MethodType
108
+ type PolyType = Types .PolyType
109
+ type TypeLambda = Types .TypeLambda
94
110
95
111
type ImportSelector = untpd.Tree
96
112
0 commit comments