summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/reflect/ReflectSetup.scala
blob: f18c114d62c2be9d808663d59a67fe4a4dcae035 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package scala.tools
package reflect

import scala.tools.nsc.Global

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