All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ammonite.repl.tools.Compat.scala Maven / Gradle / Ivy

package ammonite.repl.tools

import sourcecode.Compat.Context

object Compat{
  def showCode(c: Context)(tree: c.Tree): String = {
    c.universe.showCode(tree)
  }
  def companion(c: Context)(sym: c.universe.ClassSymbol): c.Tree = {
    import c.universe._
    q"classOf[${sym.companion}]"
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy