summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/ReflectSetup.scala
blob: 26c720a10f5b2aa728e78d9f8e7866be36d0ca67 (plain) (blame)
1
2
3
4
5
6
7
package scala.tools.nsc

/** A helper trait to initialize things that need to be set before JavaMirrors and other
 *  reflect specific traits are initialized */
private[nsc] trait ReflectSetup { this: Global =>
  phase = new Run().typerPhase
}