Scala Language
Quasiquotes
Sök…
Skapa ett syntaxträd med kvasikvoter
Använd kvasikvoter för att skapa ett Tree
i ett makro.
object macro {
def addCreationDate(): java.util.Date = macro impl.addCreationDate
}
object impl {
def addCreationDate(c: Context)(): c.Expr[java.util.Date] = {
import c.universe._
val date = q"new java.util.Date()" // this is the quasiquote
c.Expr[java.util.Date](date)
}
}
Det kan vara godtyckligt komplicerat men det kommer att valideras för korrekt skalasyntax.
Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow