CoverageRange

@Serializable
data class CoverageRange(val startOffset: Int, val endOffset: Int, val count: Int)

Coverage data for a source range.

Constructors

Link copied to clipboard
constructor(startOffset: Int, endOffset: Int, count: Int)

Properties

Link copied to clipboard
val count: Int

Collected execution count of the source range.

Link copied to clipboard

JavaScript script source offset for the range end.

Link copied to clipboard

JavaScript script source offset for the range start.