summaryrefslogtreecommitdiff
path: root/src/compiler/scala/reflect/macros/runtime/TypeTags.scala
blob: 2bc2fe638487df421b226d1a968c2ec6354d540a (plain) (blame)
1
2
3
4
5
6
7
8
9
package scala.reflect.macros
package runtime

trait TypeTags {
  self: Context =>

  def AbsTypeTag[T](tpe: Type): AbsTypeTag[T] = universe.AbsTypeTag[T](mirror, universe.FixedMirrorTypeCreator(mirror, tpe))
  def TypeTag[T](tpe: Type): TypeTag[T] = universe.TypeTag[T](mirror, universe.FixedMirrorTypeCreator(mirror, tpe))
}