Skip to content

Commit 7a13838

Browse files
committed
Cleanups
1 parent 7616094 commit 7a13838

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: compiler/src/dotty/tools/dotc/Compiler.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ class Compiler {
102102
new TupleOptimizations, // Optimize generic operations on tuples
103103
new LetOverApply, // Lift blocks from receivers of applications
104104
new ArrayConstructors) :: // Intercept creation of (non-generic) arrays and intrinsify.
105-
List(new PreRecheck) ::
106-
List(new TestRecheck) ::
105+
List(new PreRecheck) :: // Preparations for recheck phase, enabled under -Yrecheck
106+
List(new TestRecheck) :: // Test rechecking, enabled under -Yrecheck
107107
List(new Erasure) :: // Rewrite types to JVM model, erasing all type parameters, abstract types and refinements.
108108
List(new ElimErasedValueType, // Expand erased value types to their underlying implmementation types
109109
new PureStats, // Remove pure stats from blocks

Diff for: compiler/src/dotty/tools/dotc/typer/RefineTypes.overflow

Whitespace-only changes.

0 commit comments

Comments
 (0)