我想推断出AppliedType
的隐含价值,这就是我所做的
val valueType = accessorTree.returnType
val encoderType = tq"DatumEncoder[$valueType]" // returns a Tree
val encoder = c.inferImplicitValue(encoderType) // require a Type
但tq
会返回Tree
如何将其转换为类型
答案 0 :(得分:3)
此link包含tq
类型插补器的详细响应。
您可以这样做:encoderType.tpe
或者你可以:
import reflect.runtime.currentMirror
import tools.reflect.ToolBox
val toolbox = currentMirror.mkToolBox()
def typecheckType(tree: Tree): Type = toolbox.typecheck(tree, toolbox.TYPEmode).tpe
typecheckType(encoderType)