How do I escape a newline in macro quasiquotes

326 Views Asked by At

For example:

q"import scala.collection.mutable.Buffer\ndef foo: Buffer[Int] = ???"

This gives an error, because the newline characters is not resolved.

1

There are 1 best solutions below

0
On BEST ANSWER

Sample from my tmp dir:

    evals += q"""assert ($x.productArity >= ${args.length - 1},
    "Bad product arity ("+ $x.productArity +") for assignment")"""

Or, just use a semi:

q"import scala.collection.mutable.Buffer; def foo: Buffer[Int] = ???"

You can't splice something that is parsed away.