Skip to content

Commit 35a9354

Browse files
committed
Restore SubstMap's public API (unsealed, constructors, etc)
1 parent c2021de commit 35a9354

File tree

5 files changed

+41
-26
lines changed

5 files changed

+41
-26
lines changed

src/compiler/scala/tools/nsc/transform/SpecializeTypes.scala

+5-4
Original file line numberDiff line numberDiff line change
@@ -1439,10 +1439,11 @@ abstract class SpecializeTypes extends InfoTransform with TypingTransformers {
14391439
to: List[Symbol],
14401440
targetClass: Symbol,
14411441
addressFields: Boolean) extends TreeSymSubstituter(from, to) {
1442-
private def matcher(sym1: Symbol, sym2: Symbol) =
1443-
if (sym2.isTypeSkolem) sym2.deSkolemize eq sym1
1444-
else sym1 eq sym2
1445-
override val symSubst = SubstSymMap(from, to, matcher)
1442+
override val symSubst = new SubstSymMap(from, to) {
1443+
override def matches(sym1: Symbol, sym2: Symbol) =
1444+
if (sym2.isTypeSkolem) sym2.deSkolemize eq sym1
1445+
else sym1 eq sym2
1446+
}
14461447

14471448
private def isAccessible(sym: Symbol): Boolean =
14481449
if (currentOwner.isAnonymousFunction) {

src/reflect/scala/reflect/internal/Symbols.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3764,7 +3764,7 @@ trait Symbols extends api.Symbols { self: SymbolTable =>
37643764
else {
37653765
val syms1 = mapList(syms)(_.cloneSymbol)
37663766
cloneSymbolsSubstSymMap.using { (msm: SubstSymMap) =>
3767-
msm.reload(syms, syms1)
3767+
msm.reset(syms, syms1)
37683768
syms1.foreach(_.modifyInfo(msm))
37693769
}
37703770
syms1

src/reflect/scala/reflect/internal/Types.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -4059,7 +4059,7 @@ trait Types
40594059
val resultThis = result.typeSymbol.thisType
40604060
val substThisMap = new SubstThisMap(original.typeSymbol, resultThis)
40614061
copyRefinedTypeSSM.using { (msm: SubstSymMap) =>
4062-
msm.reload(syms1, syms2)
4062+
msm.reset(syms1, syms2)
40634063
syms2.foreach(_.modifyInfo(info => msm.apply(substThisMap.apply(info))))
40644064
}
40654065
}

src/reflect/scala/reflect/internal/tpe/TypeMaps.scala

+21-20
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ import Flags._
2020
import scala.annotation.{nowarn, tailrec}
2121
import Variance._
2222
import scala.collection.mutable.ListBuffer
23-
import scala.util.chaining._
2423

2524
private[internal] trait TypeMaps {
2625
self: SymbolTable =>
@@ -665,24 +664,27 @@ private[internal] trait TypeMaps {
665664
}
666665

667666
/** A base class to compute all substitutions. */
668-
sealed abstract class SubstMap[T >: Null] extends TypeMap {
669-
private[this] var _from: List[Symbol] = Nil
670-
private[this] var _to: List[T] = Nil
667+
abstract class SubstMap[T >: Null](from0: List[Symbol], to0: List[T]) extends TypeMap {
668+
private[this] var from: List[Symbol] = from0
669+
private[this] var to: List[T] = to0
671670

672671
private[this] var fromHasTermSymbol = false
673672
private[this] var fromMin = Int.MaxValue
674673
private[this] var fromMax = Int.MinValue
675674
private[this] var fromSize = 0
676675

677-
final def from: List[Symbol] = _from
678-
final def to: List[T] = _to
676+
// So SubstTypeMap can expose them publicly
677+
// while SubstMap can continue to access them as private fields
678+
protected[this] final def accessFrom: List[Symbol] = from
679+
protected[this] final def accessTo: List[T] = to
679680

680-
def reload(from0: List[Symbol], to0: List[T]): this.type = {
681+
reset(from0, to0)
682+
def reset(from0: List[Symbol], to0: List[T]): this.type = {
681683
// OPT this check was 2-3% of some profiles, demoted to -Xdev
682684
if (isDeveloper) assert(sameLength(from, to), "Unsound substitution from "+ from +" to "+ to)
683685

684-
_from = from0
685-
_to = to0
686+
from = from0
687+
to = to0
686688

687689
fromHasTermSymbol = false
688690
fromMin = Int.MaxValue
@@ -783,7 +785,11 @@ private[internal] trait TypeMaps {
783785
}
784786

785787
/** A map to implement the `substSym` method. */
786-
sealed class SubstSymMap private () extends SubstMap[Symbol] {
788+
class SubstSymMap(from0: List[Symbol], to0: List[Symbol]) extends SubstMap[Symbol](from0, to0) {
789+
def this(pairs: (Symbol, Symbol)*) = this(pairs.toList.map(_._1), pairs.toList.map(_._2))
790+
791+
private[this] final def from: List[Symbol] = accessFrom
792+
private[this] final def to: List[Symbol] = accessTo
787793

788794
protected def toType(fromTpe: Type, sym: Symbol) = fromTpe match {
789795
case TypeRef(pre, _, args) => copyTypeRef(fromTpe, pre, sym, args)
@@ -845,19 +851,14 @@ private[internal] trait TypeMaps {
845851

846852
object SubstSymMap {
847853
def apply(): SubstSymMap = new SubstSymMap()
848-
def apply(from: List[Symbol], to: List[Symbol]): SubstSymMap = new SubstSymMap().tap(_.reload(from, to))
849-
def apply(from: List[Symbol], to: List[Symbol], cmp: (Symbol, Symbol) => Boolean): SubstSymMap = {
850-
val ssm = new SubstSymMap() {
851-
override protected def matches(sym: Symbol, sym1: Symbol): Boolean = cmp(sym, sym1)
852-
}
853-
ssm.tap(_.reload(from, to))
854-
}
855-
def apply(fromto: (Symbol, Symbol)): SubstSymMap = apply(List(fromto._1), List(fromto._2))
854+
def apply(from: List[Symbol], to: List[Symbol]): SubstSymMap = new SubstSymMap(from, to)
855+
def apply(fromto: (Symbol, Symbol)): SubstSymMap = new SubstSymMap(fromto)
856856
}
857857

858858
/** A map to implement the `subst` method. */
859-
class SubstTypeMap(from0: List[Symbol], to0: List[Type]) extends SubstMap[Type] {
860-
super.reload(from0, to0)
859+
class SubstTypeMap(from0: List[Symbol], to0: List[Type]) extends SubstMap[Type](from0, to0) {
860+
final def from: List[Symbol] = accessFrom
861+
final def to: List[Type] = accessTo
861862

862863
override protected def toType(fromtp: Type, tp: Type) = tp
863864

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package scala.reflect.internal
2+
3+
import scala.tools.nsc.symtab.SymbolTableForUnitTesting
4+
5+
class SubstMapTest {
6+
object symbolTable extends SymbolTableForUnitTesting
7+
import symbolTable._
8+
9+
// compile-test for https://github.com/scala/community-build/pull/1413
10+
new SubstMap[String](Nil, Nil) {
11+
protected def toType(fromtp: Type, tp: String) = fromtp
12+
}
13+
}

0 commit comments

Comments
 (0)