All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dotty.tools.dotc.core.ConstraintRunInfo.scala Maven / Gradle / Ivy

The newest version!
package dotty.tools.dotc
package core

import Contexts._
import config.Printers.{default, typr}

trait ConstraintRunInfo { self: Run =>
  private[this] var maxSize = 0
  private[this] var maxConstraint: Constraint = _
  def recordConstraintSize(c: Constraint, size: Int): Unit =
    if (size > maxSize) {
      maxSize = size
      maxConstraint = c
    }
  def printMaxConstraint()(implicit ctx: Context): Unit = {
    val printer = if (ctx.settings.YdetailedStats.value) default else typr
    if (maxSize > 0) printer.println(s"max constraint = ${maxConstraint.show}")
  }
  protected def reset(): Unit = maxConstraint = null
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy