NoOp

data class NoOp(val passName: String, val reason: String = "") : ConsolidationPassResult

The pass had nothing to do — the snapshot is already consolidated as far as this pass is concerned. Returning NoOp (not an empty Changed) is how a pass signals it has settled, which lets the consolidation loop detect convergence.

Constructors

Link copied to clipboard
constructor(passName: String, reason: String = "")

Properties

Link copied to clipboard
open override val passName: String

The name of the pass that produced this result.

Link copied to clipboard

Optional explanation of why nothing was done.