ExecuteBefore

@Target(allowedTargets = [AnnotationTarget.CLASS])
annotation class ExecuteBefore(val other: KClass<out Pass>)

Register a dependency for the annotated pass. This ensures that the annotated pass is executed before other pass.

Properties

Link copied to clipboard
val other: KClass<out Pass>