Zoeken…


Maak een syntaxisboom met quasiquotes

Gebruik quasiquotes om een Tree in een macro te maken.

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)
  }
}

Het kan willekeurig complex zijn, maar het wordt gevalideerd voor de juiste scala syntax.



Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow