aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/config/Printers.scala
blob: 7f9c73926917492b57414edcfba85d908ad51923 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package dotty.tools.dotc.config

object Printers {

  class Printer {
    def println(msg: => String): Unit = System.out.println(msg)
  }

  object noPrinter extends Printer {
    override def println(msg: => String): Unit = ()
  }

  val core: Printer = noPrinter
  val typr: Printer = noPrinter
  val constr: Printer = noPrinter
  val overload: Printer = noPrinter
  val implicits: Printer = noPrinter
  val unapp: Printer = noPrinter
  val completions = noPrinter

}