I am trying to use quasi quote to generate the package AST. I have a string variable that lists out the package path such that
val pkg = "database.dao"
When I use quasi quote q"package $pkg
, it tells me that I need a RefTree
instead. I tried searching for a while now and still haven't found an answer to convert the string to RefTree
How do I do so?
I found the answer on pg 7 of this slideshare
It turns out I will need to generate my own AST using multiple
Select()
s if I want to dynamically inject the package variable.