aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/Phases.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotty/tools/dotc/core/Phases.scala')
-rw-r--r--src/dotty/tools/dotc/core/Phases.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dotty/tools/dotc/core/Phases.scala b/src/dotty/tools/dotc/core/Phases.scala
index c1bc243a0..5777c0f5b 100644
--- a/src/dotty/tools/dotc/core/Phases.scala
+++ b/src/dotty/tools/dotc/core/Phases.scala
@@ -170,7 +170,7 @@ object Phases {
private val patmatCache = new PhaseCache(classOf[PatternMatcher])
private val flattenCache = new PhaseCache(classOf[Flatten])
private val explicitOuterCache = new PhaseCache(classOf[ExplicitOuter])
- private val gettersSettersCache = new PhaseCache(classOf[GettersSetters])
+ private val gettersCache = new PhaseCache(classOf[Getters])
def typerPhase = typerCache.phase
def refchecksPhase = refChecksCache.phase
@@ -178,7 +178,7 @@ object Phases {
def patmatPhase = patmatCache.phase
def flattenPhase = flattenCache.phase
def explicitOuterPhase = explicitOuterCache.phase
- def gettersSettersPhase = gettersSettersCache.phase
+ def gettersPhase = gettersCache.phase
def isAfterTyper(phase: Phase): Boolean = phase.id > typerPhase.id
}