File tree 2 files changed +385
-0
lines changed
generator/src/main/protobuf
output/src/main/scala/generated/dotty/tools/dotc/semanticdb 2 files changed +385
-0
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
+ LambdaType lambda_type = 24 ;
77
+ MatchType match_type = 25 ;
76
78
}
77
79
}
78
80
@@ -144,6 +146,21 @@ message RepeatedType {
144
146
Type tpe = 1 ;
145
147
}
146
148
149
+ message LambdaType {
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
+ repeated CaseType cases = 2 ;
161
+ }
162
+
163
+
147
164
message Constant {
148
165
oneof sealed_value {
149
166
UnitConstant unit_constant = 1 ;
@@ -421,3 +438,4 @@ message TypeApplyTree {
421
438
Tree function = 1 ;
422
439
repeated Type type_arguments = 2 ;
423
440
}
441
+
You can’t perform that action at this time.
0 commit comments