summaryrefslogtreecommitdiff
path: root/src/reflect/scala/reflect/api/TreeCreator.scala
blob: 000eaa1aa61401b89ed22610c5a7099de592c179 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package scala
package reflect
package api

/** A mirror-aware factory for trees.
 *
 * This class is used internally by Scala Reflection, and is not recommended for use in client code.
 *
 * @group ReflectionAPI
 */
abstract class TreeCreator extends Serializable {
  def apply[U <: Universe with Singleton](m: scala.reflect.api.Mirror[U]): U # Tree
}