scala.reflect.Code.scala Maven / Gradle / Ivy
/* __ *\
** ________ ___ / / ___ Scala API **
** / __/ __// _ | / / / _ | (c) 2002-2010, LAMP/EPFL **
** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
\* */
package scala.reflect
/** This type is required by the compiler and should not be used in client code. */
class Code[T](val tree: Tree)
/** This type is required by the compiler and should not be used in client code. */
object Code {
def lift[A](tree: A): Code[A] =
throw new Error("Code was not lifted by compiler")
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy