@@ -318,10 +318,14 @@ object TreeMessage extends SemanticdbGeneratedMessageCompanion[dotty.tools.dotc
318
318
// @@protoc_insertion_point(GeneratedMessageCompanion[dotty.tools.dotc.semanticdb.Tree])
319
319
}
320
320
321
+ /** @param properties
322
+ * bitmask of SymbolInformation.Property
323
+ */
321
324
@ SerialVersionUID (0L )
322
325
final case class ApplyTree (
323
326
function : dotty.tools.dotc.semanticdb.Tree = dotty.tools.dotc.semanticdb.ApplyTree ._typemapper_function.toCustom(dotty.tools.dotc.semanticdb.TreeMessage .defaultInstance),
324
- arguments : _root_.scala.Seq [dotty.tools.dotc.semanticdb.Tree ] = _root_.scala.Seq .empty
327
+ arguments : _root_.scala.Seq [dotty.tools.dotc.semanticdb.Tree ] = _root_.scala.Seq .empty,
328
+ properties : _root_.scala.Int = 0
325
329
) extends dotty.tools.dotc.semanticdb.Tree .NonEmpty with SemanticdbGeneratedMessage derives CanEqual {
326
330
@ transient @ sharable
327
331
private var __serializedSizeMemoized : _root_.scala.Int = 0
@@ -338,6 +342,13 @@ final case class ApplyTree(
338
342
val __value = dotty.tools.dotc.semanticdb.ApplyTree ._typemapper_arguments.toBase(__item)
339
343
__size += 1 + SemanticdbOutputStream .computeUInt32SizeNoTag(__value.serializedSize) + __value.serializedSize
340
344
}
345
+
346
+ {
347
+ val __value = properties
348
+ if (__value != 0 ) {
349
+ __size += SemanticdbOutputStream .computeInt32Size(3 , __value)
350
+ }
351
+ };
341
352
__size
342
353
}
343
354
override def serializedSize : _root_.scala.Int = {
@@ -364,12 +375,19 @@ final case class ApplyTree(
364
375
_output__.writeUInt32NoTag(__m.serializedSize)
365
376
__m.writeTo(_output__)
366
377
};
378
+ {
379
+ val __v = properties
380
+ if (__v != 0 ) {
381
+ _output__.writeInt32(3 , __v)
382
+ }
383
+ };
367
384
}
368
385
def withFunction (__v : dotty.tools.dotc.semanticdb.Tree ): ApplyTree = copy(function = __v)
369
386
def clearArguments = copy(arguments = _root_.scala.Seq .empty)
370
387
def addArguments (__vs : dotty.tools.dotc.semanticdb.Tree * ): ApplyTree = addAllArguments(__vs)
371
388
def addAllArguments (__vs : Iterable [dotty.tools.dotc.semanticdb.Tree ]): ApplyTree = copy(arguments = arguments ++ __vs)
372
389
def withArguments (__v : _root_.scala.Seq [dotty.tools.dotc.semanticdb.Tree ]): ApplyTree = copy(arguments = __v)
390
+ def withProperties (__v : _root_.scala.Int ): ApplyTree = copy(properties = __v)
373
391
374
392
375
393
@@ -382,6 +400,7 @@ object ApplyTree extends SemanticdbGeneratedMessageCompanion[dotty.tools.dotc.s
382
400
def parseFrom (`_input__` : SemanticdbInputStream ): dotty.tools.dotc.semanticdb.ApplyTree = {
383
401
var __function : _root_.scala.Option [dotty.tools.dotc.semanticdb.TreeMessage ] = _root_.scala.None
384
402
val __arguments : _root_.scala.collection.immutable.VectorBuilder [dotty.tools.dotc.semanticdb.Tree ] = new _root_.scala.collection.immutable.VectorBuilder [dotty.tools.dotc.semanticdb.Tree ]
403
+ var __properties : _root_.scala.Int = 0
385
404
var _done__ = false
386
405
while (! _done__) {
387
406
val _tag__ = _input__.readTag()
@@ -391,12 +410,15 @@ object ApplyTree extends SemanticdbGeneratedMessageCompanion[dotty.tools.dotc.s
391
410
__function = _root_.scala.Some (__function.fold(LiteParser .readMessage[dotty.tools.dotc.semanticdb.TreeMessage ](_input__))(LiteParser .readMessage(_input__, _)))
392
411
case 18 =>
393
412
__arguments += dotty.tools.dotc.semanticdb.ApplyTree ._typemapper_arguments.toCustom(LiteParser .readMessage[dotty.tools.dotc.semanticdb.TreeMessage ](_input__))
413
+ case 24 =>
414
+ __properties = _input__.readInt32()
394
415
case tag => _input__.skipField(tag)
395
416
}
396
417
}
397
418
dotty.tools.dotc.semanticdb.ApplyTree (
398
419
function = dotty.tools.dotc.semanticdb.ApplyTree ._typemapper_function.toCustom(__function.getOrElse(dotty.tools.dotc.semanticdb.TreeMessage .defaultInstance)),
399
- arguments = __arguments.result()
420
+ arguments = __arguments.result(),
421
+ properties = __properties
400
422
)
401
423
}
402
424
@@ -407,20 +429,24 @@ object ApplyTree extends SemanticdbGeneratedMessageCompanion[dotty.tools.dotc.s
407
429
408
430
lazy val defaultInstance = dotty.tools.dotc.semanticdb.ApplyTree (
409
431
function = dotty.tools.dotc.semanticdb.ApplyTree ._typemapper_function.toCustom(dotty.tools.dotc.semanticdb.TreeMessage .defaultInstance),
410
- arguments = _root_.scala.Seq .empty
432
+ arguments = _root_.scala.Seq .empty,
433
+ properties = 0
411
434
)
412
435
final val FUNCTION_FIELD_NUMBER = 1
413
436
final val ARGUMENTS_FIELD_NUMBER = 2
437
+ final val PROPERTIES_FIELD_NUMBER = 3
414
438
@ transient @ sharable
415
439
private [semanticdb] val _typemapper_function : SemanticdbTypeMapper [dotty.tools.dotc.semanticdb.TreeMessage , dotty.tools.dotc.semanticdb.Tree ] = implicitly[SemanticdbTypeMapper [dotty.tools.dotc.semanticdb.TreeMessage , dotty.tools.dotc.semanticdb.Tree ]]
416
440
@ transient @ sharable
417
441
private [semanticdb] val _typemapper_arguments : SemanticdbTypeMapper [dotty.tools.dotc.semanticdb.TreeMessage , dotty.tools.dotc.semanticdb.Tree ] = implicitly[SemanticdbTypeMapper [dotty.tools.dotc.semanticdb.TreeMessage , dotty.tools.dotc.semanticdb.Tree ]]
418
442
def of (
419
443
function : dotty.tools.dotc.semanticdb.Tree ,
420
- arguments : _root_.scala.Seq [dotty.tools.dotc.semanticdb.Tree ]
444
+ arguments : _root_.scala.Seq [dotty.tools.dotc.semanticdb.Tree ],
445
+ properties : _root_.scala.Int
421
446
): _root_.dotty.tools.dotc.semanticdb.ApplyTree = _root_.dotty.tools.dotc.semanticdb.ApplyTree (
422
447
function,
423
- arguments
448
+ arguments,
449
+ properties
424
450
)
425
451
// @@protoc_insertion_point(GeneratedMessageCompanion[dotty.tools.dotc.semanticdb.ApplyTree])
426
452
}
0 commit comments