Skip to content

Commit 8a34b41

Browse files
committed
Fully type annotate Printers
This prevents propagation changes leading to long recompiles when a printer is changed.
1 parent 838c3de commit 8a34b41

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/dotty/tools/dotc/config/Printers.scala

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ object Printers {
2222
val implicitsDetailed: Printer = noPrinter
2323
val subtyping: Printer = noPrinter
2424
val unapp: Printer = noPrinter
25-
val gadts = noPrinter
26-
val hk = noPrinter
27-
val variances = noPrinter
28-
val incremental = noPrinter
29-
val config = noPrinter
30-
val transforms = noPrinter
31-
val completions = noPrinter
32-
val cyclicErrors = noPrinter
33-
val pickling = noPrinter
25+
val gadts: Printer = noPrinter
26+
val hk: Printer = noPrinter
27+
val variances: Printer = noPrinter
28+
val incremental: Printer = noPrinter
29+
val config: Printer = noPrinter
30+
val transforms: Printer = noPrinter
31+
val completions: Printer = noPrinter
32+
val cyclicErrors: Printer = noPrinter
33+
val pickling: Printer = noPrinter
3434
}

0 commit comments

Comments
 (0)