package dotty.tools.dotc package transform import TreeTransforms._ import core.DenotTransformers._ import core.Denotations._ import core.SymDenotations._ import core.Contexts._ import core.Symbols._ import core.Types._ import core.Flags._ import core.Constants._ import core.StdNames._ import core.Decorators._ import core.transform.Erasure.isUnboundedGeneric import typer._ import typer.ErrorReporting._ import reporting.ThrowingReporter import ast.Trees._ import ast.{tpd, untpd} import java.lang.AssertionError /** This transform eliminates patterns. Right now it's a dummy. * Awaiting the real pattern matcher. */ class TreeChecker { import ast.tpd._ def check(ctx: Context) = { println(s"checking ${ctx.compilationUnit} after phase ${ctx.phase.prev}") val checkingCtx = ctx.fresh .setTyperState(ctx.typerState.withReporter(new ThrowingReporter(ctx.typerState.reporter))) Checker.typedExpr(ctx.compilationUnit.tpdTree)(checkingCtx) } object Checker extends ReTyper { override def typed(tree: untpd.Tree, pt: Type)(implicit ctx: Context) = try { tree match { case _: untpd.UnApply => // can't recheck patterns tree.asInstanceOf[tpd.Tree] case _: untpd.TypedSplice | _: untpd.Thicket | _: EmptyValDef[_] => super.typed(tree) case _ if tree.isType => promote(tree) case _ => val tree1 = super.typed(tree, pt) def isSubType(tp1: Type, tp2: Type) = (tp1 eq tp2) || // accept NoType / NoType (tp1 <:< tp2) def divergenceMsg(tp1: Type, tp2: Type) = s"""Types differ |Original type : ${tree.typeOpt.show} |After checking: ${tree1.tpe.show} |Original tree : ${tree.show} |After checking: ${tree1.show} |Why different : """.stripMargin + core.TypeComparer.explained((tp1 <:< tp2)(_)) assert(isSubType(tree1.tpe, tree.typeOpt), divergenceMsg(tree1.tpe, tree.typeOpt)) tree1 } } catch { case ex: Throwable => println(i"exception while checking $tree of class ${tree.getClass} # ${tree.uniqueId}") throw ex } override def typedIdent(tree: untpd.Ident, pt: Type)(implicit ctx: Context): Tree = { assert(tree.isTerm || ctx.phase.prev.id <= ctx.typerPhase.id, tree.show + " at " + ctx.phase) super.typedIdent(tree, pt) } override def typedSelect(tree: untpd.Select, pt: Type)(implicit ctx: Context): Tree = { assert(tree.isTerm || ctx.phase.prev.id <= ctx.typerPhase.id, tree.show + " at " + ctx.phase) super.typedSelect(tree, pt) } /** Check that all defined symbols have legal owners. * An owner is legal if it is either the same as the context's owner * or there's an owner chain of valdefs starting at the context's owner and * reaching up to the symbol's owner. The reason for this relaxed matching * is that we should be able to pull out an expression as an initializer * of a helper value without having to do a change owner traversal of the expression. */ override def index(trees: List[untpd.Tree])(implicit ctx: Context): Context = { def ownerMatches(symOwner: Symbol, ctxOwner: Symbol): Boolean = symOwner == ctxOwner || ctxOwner.isTerm && !(ctxOwner is Method | Lazy | Mutable) && ownerMatches(symOwner, ctxOwner.owner) for (tree <- trees if tree.isDef) assert(ownerMatches(tree.symbol.owner, ctx.owner), i"bad owner; $tree has owner ${tree.symbol.owner}, expected was ${ctx.owner}") super.index(trees) } } } object TreeChecker extends TreeChecker