File tree 2 files changed +414
-1
lines changed
generator/src/main/protobuf
output/src/main/scala/generated/dotty/tools/dotc/semanticdb 2 files changed +414
-1
lines changed Original file line number Diff line number Diff line change @@ -73,6 +73,8 @@ message Type {
73
73
UniversalType universal_type = 10 ;
74
74
ByNameType by_name_type = 13 ;
75
75
RepeatedType repeated_type = 14 ;
76
+ TypeLambda type_lambda = 24 ;
77
+ MatchType match_type = 25 ;
76
78
}
77
79
}
78
80
@@ -144,6 +146,22 @@ message RepeatedType {
144
146
Type tpe = 1 ;
145
147
}
146
148
149
+ message TypeLambda {
150
+ Scope parameters = 1 ;
151
+ Type return_type = 2 ;
152
+ }
153
+
154
+ message MatchType {
155
+ message CaseType {
156
+ Type key = 1 ;
157
+ Type body = 2 ;
158
+ }
159
+ Type scrutinee = 1 ;
160
+ Type bound = 2 ;
161
+ repeated CaseType cases = 3 ;
162
+ }
163
+
164
+
147
165
message Constant {
148
166
oneof sealed_value {
149
167
UnitConstant unit_constant = 1 ;
@@ -414,4 +432,5 @@ message SelectTree {
414
432
message TypeApplyTree {
415
433
Tree function = 1 ;
416
434
repeated Type type_arguments = 2 ;
417
- }
435
+ }
436
+
You can’t perform that action at this time.
0 commit comments