org.scalamacros.paradise.reflect.StdNames.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of paradise_2.12.20 Show documentation
Show all versions of paradise_2.12.20 Show documentation
Empowers production Scala compiler with latest macro developments
The newest version!
package org.scalamacros.paradise
package reflect
trait StdNames {
self: Enrichments =>
import global._
implicit class ParadiseNme(nme: global.nme.type) {
val annottees = TermName("annottees")
val macroTransform = TermName("macroTransform")
}
}