I am kind of blocked with the following (macro annotation)
situation. Suppose I have an annotation called @factory
which
aims to generate an apply
method for the annotated trait in the corresponding companion object. For instance, given the trait A
:
@factory
trait A {
val a1: Int
}
the expected code to be generated is the following one:
object A extends Factory[A] {
def apply(_a1: Int) = new A {
val a1 = _a1
}
}
Now suppose we have a trait B
which inherits from A
:
@factory
trait B extends A {
val b1: String
}
which is supposed to generate:
object B extends Factory[B] {
def apply(_a1: Int, _b1: String) = new B {
val a1 = _a1
val b1 = _b1
}
}
In the latter case, I need to know which are the attributes existing at A
, but I don't know how to get any information about them. While dealing with macro annotations I have only access to the B
trait AST (as a ClassDef
). Although its template
contains references to the parents (as TypeTrees
), both fields tpe
and symbol
are empty.
It would be great for me to get access to the A
AST. However, I think that's not feasible. Therefore, any symbol or type (pointing either the parent or the current type) would be good enough.
If you want to see more implementation details, I have uploaded the project to https://github.com/jesuslopez-gonzalez/cool-factory. It can generate the apply
for the local values.
c.typeCheck(q"(???: <tree that represents the parent>)").tpe
might provide the missing information. – Eugene BurmakotypeCheck
tomorrow. By the way, while I was analyzing the macrosContext
API, I read "provide facilities for exploring the compiler's symbol table". What's the way to do so? Thanks! – jeslgc.typeCheck(<tree that represents the parent>)
. c.typeCheck expects a term, so it fails if you give it a type. – Eugene Burmakoq
in your first comment. You were right, I was passing the raw type toc.typeCHeck
instead. Finally, I have used anasInstanceOf[A]
as input expression and the type is generated nicely. However, there's still one problem. I can't declare both parent and child together (like this github.com/jesuslopez-gonzalez/cool-factory/blob/master/src/…) because if I do so,typeCheck
can't find the parent type. Anyway, please, add a response in order to mark it as correct. – jeslg