FixApplicationResult

class FixApplicationResult(val content: String, val appliedFixes: Int, val skippedFixes: Int, val skippedFixDetails: List<SkippedFix> = emptyList())

Result of applying diagnostic fixes to one source file.

Constructors

Link copied to clipboard
constructor(content: String, appliedFixes: Int, skippedFixes: Int, skippedFixDetails: List<SkippedFix> = emptyList())
constructor(content: String, appliedFixes: Int, skippedFixes: Int)

Properties

Link copied to clipboard

Number of fixes applied.

Link copied to clipboard

Updated file content after all selected fixes were applied.

Link copied to clipboard

Structured details for fixes that were not applied.

Link copied to clipboard

Number of fixes skipped because they were unsafe, invalid, or overlapped a selected fix.

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String