summaryrefslogblamecommitdiff
path: root/src/reflect/scala/reflect/api/TypeCreator.scala
blob: 37fff90b439077a399c58a2d0cbd553cfab73201 (plain) (tree)
1
2
3
4
5
6
7
8
9

               
           
 


                                                                                                    

                       
   
                            
                                                                                   
 
package scala
package reflect
package api

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