summaryrefslogtreecommitdiff
path: root/src/compiler/scala/reflect/makro/runtime/TypeTags.scala
blob: 4f9b28767428a05e0c0187d8f4b5e390c1e239c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
package scala.reflect.makro
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))
}