gmazzo
03/22/2021, 1:56 PMgetSymbolsWithAnnotation
seems not to pick up annotation used in function/constructors parameters.
Basically this works:
class MyClass(@Builder val param: String)
but this doesn’t:
class MyClass(@Builder param: String)
inDepth
seems to have no effect either 🤔yigit
03/22/2021, 8:19 PMval
is fixing it, we are probably not traversing function parameters (setting it to val make it a property declaration in the class declaration)