Is this important to have? (it's from examples/mul...
# ksp
t
Is this important to have? (it's from examples/multiplatform/test-processor/src/main/kotlin/TestProcessor.kt)
Copy code
var invoked = false
j
It's only if your processor is not able to handle multiple invocations For example, if you use
resolver.getSymbolsWithAnnotation()
you don't need to count the invocations, the next call to your processor this method will return an empty collection.
t
Thanks, I think I'm OK then.