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

dotty.tools.dottydoc.core.DocImplicitsPhase.scala Maven / Gradle / Ivy

The newest version!
package dotty.tools
package dottydoc
package core

import dotty.tools.dotc.transform.MegaPhase.MiniPhase
import dotty.tools.dotc.core.Flags
import dotc.core.Contexts.Context
import util.syntax._

class DocImplicitsPhase extends MiniPhase {
  import dotty.tools.dotc.ast.tpd._

  def phaseName = "addImplicitsPhase"

  override def transformDefDef(tree: DefDef)(implicit ctx: Context): Tree = {
    if (
      tree.symbol.isOneOf(Flags.GivenOrImplicit) && // has to have an implicit flag
      tree.symbol.owner.isStaticOwner && // owner has to be static (e.g. top-level `object`)
      tree.vparamss.length > 0        &&
      tree.vparamss(0).length == 1       // should only take one arg, since it has to be a transformation
    ) {
      val convertee = tree.vparamss(0)(0).symbol.info.widenDealias.finalResultType.typeSymbol // the pimped type (i.e. `class`)
      ctx.docbase.addDef(convertee, tree.symbol.info.widenDealias.finalResultType.typeSymbol)
    }

    tree
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy