We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e770ff7 commit 64868aaCopy full SHA for 64868aa
src/dotty/tools/dotc/core/Contexts.scala
@@ -280,8 +280,8 @@ object Contexts {
280
final def withMode(mode: Mode): Context =
281
if (mode != this.mode) fresh.withNewMode(mode) else this
282
283
- final def withPhase(phase: PhaseId): Context =
284
- if (this.phaseId == phaseId) this else fresh.withNewPhase(phase)
+ final def withPhase(phaseId: PhaseId): Context =
+ if (this.phaseId == phaseId) this else fresh.withNewPhase(phaseId)
285
final def withPhase(phase: Phase): Context =
286
withPhase(phase.id)
287
0 commit comments