scala.reflect.macros.contexts.Reifiers.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala-compiler Show documentation
Show all versions of scala-compiler Show documentation
Compiler for the Scala Programming Language
The newest version!
/*
* Scala (https://www.scala-lang.org)
*
* Copyright EPFL and Lightbend, Inc.
*
* Licensed under Apache License 2.0
* (http://www.apache.org/licenses/LICENSE-2.0).
*
* See the NOTICE file distributed with this work for
* additional information regarding copyright ownership.
*/
package scala.reflect.macros
package contexts
trait Reifiers {
self: Context =>
val global: universe.type = universe
import universe._
import definitions._
def reifyTree(universe: Tree, mirror: Tree, tree: Tree): Tree = {
assert(ExprClass != NoSymbol, "Missing ExprClass")
val result = scala.reflect.reify.`package`.reifyTree(self.universe)(callsiteTyper, universe, mirror, tree)
logFreeVars(enclosingPosition, result)
result
}
def reifyType(universe: Tree, mirror: Tree, tpe: Type, concrete: Boolean = false): Tree = {
assert(TypeTagsClass != NoSymbol, "Missing TypeTagsClass")
val result = scala.reflect.reify.`package`.reifyType(self.universe)(callsiteTyper, universe, mirror, tpe, concrete)
logFreeVars(enclosingPosition, result)
result
}
def reifyRuntimeClass(tpe: Type, concrete: Boolean = true): Tree =
scala.reflect.reify.`package`.reifyRuntimeClass(universe)(callsiteTyper, tpe, concrete = concrete)
def reifyEnclosingRuntimeClass: Tree =
scala.reflect.reify.`package`.reifyEnclosingRuntimeClass(universe)(callsiteTyper)
def unreifyTree(tree: Tree): Tree = {
assert(ExprSplice != NoSymbol, "Missing ExprSplice")
Select(tree, ExprSplice)
}
// fixme: if I put utils here, then "global" from utils' early initialization syntax
// and "global" that comes from here conflict with each other when incrementally compiling
// the problem is that both are pickled with the same owner - trait Reifiers
// and this upsets the compiler, so that oftentimes it throws assertion failures
// Martin knows the details
//
// object utils extends {
// val global: self.global.type = self.global
// val typer: global.analyzer.Typer = self.callsiteTyper
// } with scala.reflect.reify.utils.Utils
// import utils._
private def logFreeVars(position: Position, reification: Tree): Unit = {
object utils extends {
val global: self.global.type = self.global
val typer: global.analyzer.Typer = self.callsiteTyper
} with scala.reflect.reify.utils.Utils
import utils._
def logFreeVars(symtab: SymbolTable): Unit =
// logging free vars only when they are untyped prevents avalanches of duplicate messages
symtab.syms map (sym => symtab.symDef(sym)) foreach {
case FreeTermDef(_, _, binding, _, origin) if universe.settings.logFreeTerms && binding.tpe == null =>
reporter.echo(position, s"free term: ${showRaw(binding)} $origin")
case FreeTypeDef(_, _, binding, _, origin) if universe.settings.logFreeTypes && binding.tpe == null =>
reporter.echo(position, s"free type: ${showRaw(binding)} $origin")
case _ =>
// do nothing
}
if (universe.settings.logFreeTerms || universe.settings.logFreeTypes)
reification match {
case ReifiedTree(_, _, symtab, _, _, _, _) => logFreeVars(symtab)
case ReifiedType(_, _, symtab, _, _, _) => logFreeVars(symtab)
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy