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

dotty.tools.dotc.transform.DropInlined.scala Maven / Gradle / Ivy

package dotty.tools.dotc
package transform

import typer.Inliner
import core.Contexts.Context
import MegaPhase.MiniPhase

/** Drop Inlined nodes */
class DropInlined extends MiniPhase {
  import ast.tpd._
  override def phaseName = "dropInlined"

  override def transformInlined(tree: Inlined)(implicit ctx: Context): Tree =
    Inliner.dropInlined(tree)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy