Fudge
07/28/2021, 5:43 PMA
by annotating A
and calling ``resolver.getSymbolsWithAnnotation`, and I change class `B`(unrelated).
Why does process
get called? surely to save time it should not be called.
At first I thought that resolver.getSymbolsWithAnnotation
will return an empty sequence if only B
was changed and A
has not, but it does not. I get A
in this invocation, and, at the end of the day, no time is saved and there is nothing incremental about this. So what exactly can be done to make processing code incremental? There is no flag stuffHasNotChanged
.A
is not dirty.Ting-Yuan Huang
07/28/2021, 6:13 PMFudge
07/29/2021, 2:51 PMTing-Yuan Huang
07/31/2021, 5:12 AM