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?