scala.tools.nsc.transform.patmat.MatchCps.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 SubScript extension of the Scala Programming Language
The newest version!
/* NSC -- new Scala compiler
*
* Copyright 2011-2013 LAMP/EPFL
* @author Adriaan Moors
*/
package scala.tools.nsc.transform.patmat
/** Segregating this super hacky CPS code. */
trait MatchCps {
self: PatternMatching =>
import global._
// duplicated from CPSUtils (avoid dependency from compiler -> cps plugin...)
private object CpsSymbols {
private def cpsSymbol(name: String) = rootMirror.getClassIfDefined(s"scala.util.continuations.$name")
val MarkerCPSAdaptPlus = cpsSymbol("cpsPlus")
val MarkerCPSAdaptMinus = cpsSymbol("cpsMinus")
val MarkerCPSSynth = cpsSymbol("cpsSynth")
val MarkerCPSTypes = cpsSymbol("cpsParam")
val stripTriggerCPSAnns = Set[Symbol](MarkerCPSSynth, MarkerCPSAdaptMinus, MarkerCPSAdaptPlus)
val strippedCPSAnns = stripTriggerCPSAnns + MarkerCPSTypes
// when one of the internal cps-type-state annotations is present, strip all CPS annotations
// a cps-type-state-annotated type makes no sense as an expected type (matchX.tpe is used as pt in translateMatch)
// (only test availability of MarkerCPSAdaptPlus assuming they are either all available or none of them are)
def removeCPSFromPt(pt: Type): Type = (
if (MarkerCPSAdaptPlus.exists && (stripTriggerCPSAnns exists pt.hasAnnotation))
pt filterAnnotations (ann => !(strippedCPSAnns exists ann.matches))
else
pt
)
}
def removeCPSFromPt(pt: Type): Type = CpsSymbols removeCPSFromPt pt
}