SourceRange

@Serializable
data class SourceRange(val startLine: Int, val startColumn: Int, val endLine: Int, val endColumn: Int)

Text range within a resource. All numbers are zero-based.

Constructors

Link copied to clipboard
constructor(startLine: Int, startColumn: Int, endLine: Int, endColumn: Int)

Properties

Link copied to clipboard

End column of range (exclusive).

Link copied to clipboard

End line of range

Link copied to clipboard

Start column of range (inclusive).

Link copied to clipboard

Start line of range.