dotty.tools.dotc.transform.PreRecheck.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala3-compiler_3 Show documentation
Show all versions of scala3-compiler_3 Show documentation
scala3-compiler-bootstrapped
package dotty.tools.dotc
package transform
import core.Phases.Phase
import core.DenotTransformers.DenotTransformer
import core.Contexts.{Context, ctx}
/** A base class for a phase that precedes a rechecker and that allows installing
* new types for local symbols.
*/
abstract class PreRecheck extends Phase, DenotTransformer:
def phaseName: String = "preRecheck"
override def changesBaseTypes: Boolean = true
def run(using Context): Unit = ()
override def isCheckable = false
© 2015 - 2025 Weber Informatics LLC | Privacy Policy