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

trait TypeTags {
  self: Context =>

  def WeakTypeTag[T](tpe: Type): WeakTypeTag[T]
  def TypeTag[T](tpe: Type): TypeTag[T]
}