@@ -64,7 +64,7 @@ object GenericSignatures {
64
64
ps.foreach(boxedSig)
65
65
}
66
66
67
- def boxedSig (tp : Type ): Unit = jsig(tp.widenDealias, primitiveOK = false )
67
+ def boxedSig (tp : Type ): Unit = jsig(tp.widenDealias, unboxedVCs = false )
68
68
69
69
/** The signature of the upper-bound of a type parameter.
70
70
*
@@ -232,7 +232,7 @@ object GenericSignatures {
232
232
}
233
233
234
234
@ noinline
235
- def jsig (tp0 : Type , toplevel : Boolean = false , primitiveOK : Boolean = true ): Unit = {
235
+ def jsig (tp0 : Type , toplevel : Boolean = false , unboxedVCs : Boolean = true ): Unit = {
236
236
237
237
val tp = tp0.dealias
238
238
tp match {
@@ -241,7 +241,7 @@ object GenericSignatures {
241
241
val erasedUnderlying = fullErasure(ref.underlying.bounds.hi)
242
242
// don't emit type param name if the param is upper-bounded by a primitive type (including via a value class)
243
243
if erasedUnderlying.isPrimitiveValueType then
244
- jsig(erasedUnderlying, toplevel, primitiveOK )
244
+ jsig(erasedUnderlying, toplevel, unboxedVCs )
245
245
else typeParamSig(ref.paramName.lastPart)
246
246
247
247
case defn.ArrayOf (elemtp) =>
@@ -269,15 +269,14 @@ object GenericSignatures {
269
269
else if (sym == defn.NullClass )
270
270
builder.append(" Lscala/runtime/Null$;" )
271
271
else if (sym.isPrimitiveValueClass)
272
- if (! primitiveOK ) jsig(defn.ObjectType )
272
+ if (! unboxedVCs ) jsig(defn.ObjectType )
273
273
else if (sym == defn.UnitClass ) jsig(defn.BoxedUnitClass .typeRef)
274
274
else builder.append(defn.typeTag(sym.info))
275
275
else if (sym.isDerivedValueClass) {
276
- val erasedUnderlying = fullErasure(tp)
277
- if (erasedUnderlying.isPrimitiveValueType && ! primitiveOK)
278
- classSig(sym, pre, args)
279
- else
280
- jsig(erasedUnderlying, toplevel, primitiveOK)
276
+ if (unboxedVCs) {
277
+ val erasedUnderlying = fullErasure(tp)
278
+ jsig(erasedUnderlying, toplevel)
279
+ } else classSig(sym, pre, args)
281
280
}
282
281
else if (defn.isSyntheticFunctionClass(sym)) {
283
282
val erasedSym = defn.functionTypeErasure(sym).typeSymbol
@@ -286,7 +285,7 @@ object GenericSignatures {
286
285
else if sym.isClass then
287
286
classSig(sym, pre, args)
288
287
else
289
- jsig(erasure(tp), toplevel, primitiveOK )
288
+ jsig(erasure(tp), toplevel, unboxedVCs )
290
289
291
290
case ExprType (restpe) if toplevel =>
292
291
builder.append(" ()" )
@@ -339,23 +338,23 @@ object GenericSignatures {
339
338
val (reprParents, _) = splitIntersection(parents)
340
339
val repr =
341
340
reprParents.find(_.typeSymbol.is(TypeParam )).getOrElse(reprParents.head)
342
- jsig(repr, primitiveOK = primitiveOK )
341
+ jsig(repr, unboxedVCs = unboxedVCs )
343
342
344
343
case ci : ClassInfo =>
345
344
val tParams = tp.typeParams
346
345
if (toplevel) polyParamSig(tParams)
347
346
superSig(ci.typeSymbol, ci.parents)
348
347
349
348
case AnnotatedType (atp, _) =>
350
- jsig(atp, toplevel, primitiveOK )
349
+ jsig(atp, toplevel, unboxedVCs )
351
350
352
351
case hktl : HKTypeLambda =>
353
- jsig(hktl.finalResultType, toplevel, primitiveOK )
352
+ jsig(hktl.finalResultType, toplevel, unboxedVCs )
354
353
355
354
case _ =>
356
355
val etp = erasure(tp)
357
356
if (etp eq tp) throw new UnknownSig
358
- else jsig(etp, toplevel, primitiveOK )
357
+ else jsig(etp, toplevel, unboxedVCs )
359
358
}
360
359
}
361
360
val throwsArgs = sym0.annotations flatMap ThrownException .unapply
0 commit comments