Is the any documentation about incremental compila...
# compiler
t
Is the any documentation about incremental compilation? I'm trying to collect classes with a specific annotation to build a registry. It looks like backend IR gets the classes only when they are changed (or after clean). Sometimes this generates empty registry which I guess is because of incremental compilation. Would collecting them with a predicate from FIR solve this problem?
1
d
IC doesn't work well with compiler plugins at the moment: KT-55982
thank you color 1