summaryrefslogtreecommitdiff
path: root/src/compiler/scala/reflect/makro/runtime/Exprs.scala
blob: b680b56babbcc4551d13a2ac50b7a1a826a7c669 (plain) (blame)
1
2
3
4
5
6
7
8
package scala.reflect.makro
package runtime

trait Exprs {
  self: Context =>

  def Expr[T: AbsTypeTag](tree: Tree): Expr[T] = universe.Expr[T](mirror, universe.FixedMirrorTreeCreator(mirror, tree))
}