Hi, I am generating synthetic function using `Synt...
# compiler
d
Hi, I am generating synthetic function using
SyntheticResolveExtension
which should have parameter of a class type which is generated by KSP but my
SyntheticResolveExtension
is generating the function in
kspKotlin
phase, so i am not able to find the class by using
ModuleDescriptor.findClassAcrossModuleDependencies
is there any other i can use to build parameter for ksp generated class.
Solved by delaying the generation of the function until the ksp phase is over because
SyntheticResolveExtension
is also again triggered in
compileKotlin
phase and the generated class is resolved there.